Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1259)

Unified Diff: ui/base/ui_base_types.h

Issue 2700523004: Remove docked windows entirely in M59. (Closed)
Patch Set: sky's comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/base/ui_base_types.h
diff --git a/ui/base/ui_base_types.h b/ui/base/ui_base_types.h
index 4d29bb30d8c6f84dc424b273d6f025307140ec8b..b07dca26392f981faa4f69dfb406a7a5b34a8f61 100644
--- a/ui/base/ui_base_types.h
+++ b/ui/base/ui_base_types.h
@@ -14,14 +14,13 @@ class Event;
// Window "show" state.
enum WindowShowState {
// A default un-set state.
- SHOW_STATE_DEFAULT = 0,
- SHOW_STATE_NORMAL = 1,
- SHOW_STATE_MINIMIZED = 2,
- SHOW_STATE_MAXIMIZED = 3,
- SHOW_STATE_INACTIVE = 4, // Views only, not persisted.
+ SHOW_STATE_DEFAULT = 0,
+ SHOW_STATE_NORMAL = 1,
+ SHOW_STATE_MINIMIZED = 2,
+ SHOW_STATE_MAXIMIZED = 3,
+ SHOW_STATE_INACTIVE = 4, // Views only, not persisted.
SHOW_STATE_FULLSCREEN = 5,
- SHOW_STATE_DOCKED = 6,
- SHOW_STATE_END = 7 // The end of show state enum.
+ SHOW_STATE_END = 6 // The end of show state enum.
};
// Dialog button identifiers used to specify which buttons to show the user.

Powered by Google App Engine
This is Rietveld 408576698