Merge "Dump controller for AppWindowToken" into oc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
b74567dd3b
@@ -423,11 +423,11 @@ final class ActivityRecord extends ConfigurationContainer implements AppWindowCo
|
||||
pw.print("\"");
|
||||
pw.print(" primaryColor=");
|
||||
pw.println(Integer.toHexString(taskDescription.getPrimaryColor()));
|
||||
pw.print(" backgroundColor=");
|
||||
pw.print(prefix + " backgroundColor=");
|
||||
pw.println(Integer.toHexString(taskDescription.getBackgroundColor()));
|
||||
pw.print(" statusBarColor=");
|
||||
pw.print(prefix + " statusBarColor=");
|
||||
pw.println(Integer.toHexString(taskDescription.getStatusBarColor()));
|
||||
pw.print(" navigationBarColor=");
|
||||
pw.print(prefix + " navigationBarColor=");
|
||||
pw.println(Integer.toHexString(taskDescription.getNavigationBarColor()));
|
||||
}
|
||||
if (iconFilename == null && taskDescription.getIcon() != null) {
|
||||
|
||||
@@ -715,6 +715,10 @@ public class AppWindowContainerController
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "{AppWindowContainerController token=" + mToken + "}";
|
||||
return "AppWindowContainerController{"
|
||||
+ " token=" + mToken
|
||||
+ " mContainer=" + mContainer
|
||||
+ " mListener=" + mListener
|
||||
+ "}";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1550,6 +1550,9 @@ class AppWindowToken extends WindowToken implements WindowManagerService.AppFree
|
||||
if (mPendingRelaunchCount != 0) {
|
||||
pw.print(prefix); pw.print("mPendingRelaunchCount="); pw.println(mPendingRelaunchCount);
|
||||
}
|
||||
if (getController() != null) {
|
||||
pw.print(prefix); pw.print("controller="); pw.println(getController());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user