diff options
author | flackr@chromium.org <flackr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-18 20:03:46 +0000 |
---|---|---|
committer | flackr@chromium.org <flackr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-18 20:03:46 +0000 |
commit | e871f1a0bdf9c09b2c72e521b179ebb2fd6dc4e9 (patch) | |
tree | c97ba41c7fe07b9cffcdc71083bb2f5d58205e85 /ash/shell_window_ids.h | |
parent | 000d9df01681c4d0fb722c797ba0a398c3756504 (diff) | |
download | chromium_src-e871f1a0bdf9c09b2c72e521b179ebb2fd6dc4e9.zip chromium_src-e871f1a0bdf9c09b2c72e521b179ebb2fd6dc4e9.tar.gz chromium_src-e871f1a0bdf9c09b2c72e521b179ebb2fd6dc4e9.tar.bz2 |
Rename system modal types and classes appropriately.
Renames the following as per the bug description by ben@:
kShellWindowId_ModalContainer -> kShellWindowId_SystemModalContainer
kShellWindowId_LockModalContainer -> kShellWindowId_LockSystemModalContainer
ModalContainerLayoutManager->SystemModalContainerLayoutManager
ModalityEventFilter->SystemModalContainerEventFilter
BUG=109460
TEST=All tests and compilation still succeed.
Review URL: https://chromiumcodereview.appspot.com/9249022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118127 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell_window_ids.h')
-rw-r--r-- | ash/shell_window_ids.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ash/shell_window_ids.h b/ash/shell_window_ids.h index 42849c4..6376ef7 100644 --- a/ash/shell_window_ids.h +++ b/ash/shell_window_ids.h @@ -28,13 +28,13 @@ const int kShellWindowId_PanelContainer = 3; const int kShellWindowId_LauncherContainer = 4; // The container for user-specific modal windows. -const int kShellWindowId_ModalContainer = 5; +const int kShellWindowId_SystemModalContainer = 5; // The container for the lock screen. const int kShellWindowId_LockScreenContainer = 6; // The container for the lock screen modal windows. -const int kShellWindowId_LockModalContainer = 7; +const int kShellWindowId_LockSystemModalContainer = 7; // The container for the status area. const int kShellWindowId_StatusContainer = 8; |