resolved conflicts for merge of 33264596 to ics-aah
Change-Id: I1b0b2c3a63d97d49940666ceec71293bdbab4e2e
This commit is contained in:
@@ -218,4 +218,9 @@ interface IWindowManager
|
||||
* Called by the settings application to temporarily set the pointer speed.
|
||||
*/
|
||||
void setPointerSpeed(int speed);
|
||||
|
||||
/**
|
||||
* Block until all windows the window manager knows about have been drawn.
|
||||
*/
|
||||
void waitForAllDrawn();
|
||||
}
|
||||
|
||||
@@ -177,7 +177,8 @@ public interface WindowManager extends ViewManager {
|
||||
@ViewDebug.IntToString(from = TYPE_SYSTEM_ERROR, to = "TYPE_SYSTEM_ERROR"),
|
||||
@ViewDebug.IntToString(from = TYPE_INPUT_METHOD, to = "TYPE_INPUT_METHOD"),
|
||||
@ViewDebug.IntToString(from = TYPE_INPUT_METHOD_DIALOG, to = "TYPE_INPUT_METHOD_DIALOG"),
|
||||
@ViewDebug.IntToString(from = TYPE_SECURE_SYSTEM_OVERLAY, to = "TYPE_SECURE_SYSTEM_OVERLAY")
|
||||
@ViewDebug.IntToString(from = TYPE_SECURE_SYSTEM_OVERLAY, to = "TYPE_SECURE_SYSTEM_OVERLAY"),
|
||||
@ViewDebug.IntToString(from = TYPE_BOOT_PROGRESS, to = "TYPE_BOOT_PROGRESS")
|
||||
})
|
||||
public int type;
|
||||
|
||||
@@ -400,6 +401,13 @@ public interface WindowManager extends ViewManager {
|
||||
*/
|
||||
public static final int TYPE_VOLUME_OVERLAY = FIRST_SYSTEM_WINDOW+20;
|
||||
|
||||
/**
|
||||
* Window type: The boot progress dialog, goes on top of everything
|
||||
* in the world.
|
||||
* @hide
|
||||
*/
|
||||
public static final int TYPE_BOOT_PROGRESS = FIRST_SYSTEM_WINDOW+21;
|
||||
|
||||
/**
|
||||
* End of types of system windows.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user