Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_frameworks_base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dhina17
platform_frameworks_base
Commits
941c860f
Commit
941c860f
authored
1 year ago
by
Iván Budnik
Committed by
Android (Google) Code Review
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge "Initialize mSystemController before creating ProxyMediaRouter2Impl" into main
parents
69b2fb83
41165af8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
media/java/android/media/MediaRouter2.java
+22
-8
22 additions, 8 deletions
media/java/android/media/MediaRouter2.java
with
22 additions
and
8 deletions
media/java/android/media/MediaRouter2.java
+
22
−
8
View file @
941c860f
...
...
@@ -310,8 +310,11 @@ public final class MediaRouter2 {
IMediaRouterService
.
Stub
.
asInterface
(
ServiceManager
.
getService
(
Context
.
MEDIA_ROUTER_SERVICE
));
mSystemController
=
new
SystemRoutingController
(
ProxyMediaRouter2Impl
.
getSystemSessionInfoImpl
(
mMediaRouterService
,
clientPackageName
));
mImpl
=
new
ProxyMediaRouter2Impl
(
context
,
clientPackageName
);
mSystemController
=
new
SystemRoutingController
(
mImpl
.
getSystemSessionInfo
());
}
/**
...
...
@@ -2057,13 +2060,7 @@ public final class MediaRouter2 {
@Override
public
RoutingSessionInfo
getSystemSessionInfo
()
{
RoutingSessionInfo
result
;
try
{
result
=
mMediaRouterService
.
getSystemSessionInfoForPackage
(
mClientPackageName
);
}
catch
(
RemoteException
ex
)
{
throw
ex
.
rethrowFromSystemServer
();
}
return
ensureClientPackageNameForSystemSession
(
result
);
return
getSystemSessionInfoImpl
(
mMediaRouterService
,
mClientPackageName
);
}
/**
...
...
@@ -2427,6 +2424,23 @@ public final class MediaRouter2 {
releaseSession
(
controller
.
getRoutingSessionInfo
());
}
/**
* Retrieves the system session info for the given package.
*
* <p>The returned routing session is guaranteed to have a non-null {@link
* RoutingSessionInfo#getClientPackageName() client package name}.
*
* <p>Extracted into a static method to allow calling this from the constructor.
*/
/* package */
static
RoutingSessionInfo
getSystemSessionInfoImpl
(
@NonNull
IMediaRouterService
service
,
@NonNull
String
clientPackageName
)
{
try
{
return
service
.
getSystemSessionInfoForPackage
(
clientPackageName
);
}
catch
(
RemoteException
ex
)
{
throw
ex
.
rethrowFromSystemServer
();
}
}
/**
* Sets the routing session's {@linkplain RoutingSessionInfo#getClientPackageName() client
* package name} to {@link #mClientPackageName} if empty and returns the session.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment