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

Unified Diff: ui/oak/oak_aura_window_display.cc

Issue 115153002: wm: public window_types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ozone deps Created 7 years 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
« no previous file with comments | « ui/aura/window.cc ('k') | ui/views/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/oak/oak_aura_window_display.cc
diff --git a/ui/oak/oak_aura_window_display.cc b/ui/oak/oak_aura_window_display.cc
index e751a332393ff0bcceafecbbad668c0085d09f36..c78d0cdd22e2d7776479575a353ed054136fc8b5 100644
--- a/ui/oak/oak_aura_window_display.cc
+++ b/ui/oak/oak_aura_window_display.cc
@@ -43,25 +43,25 @@ ROW_COUNT
base::string16 PropertyWithWindowType(int type) {
std::string property = "Type: ";
switch (type) {
- case aura::client::WINDOW_TYPE_UNKNOWN:
+ case ui::wm::WINDOW_TYPE_UNKNOWN:
property.append("WINDOW_TYPE_UNKNOWN");
break;
- case aura::client::WINDOW_TYPE_NORMAL:
+ case ui::wm::WINDOW_TYPE_NORMAL:
property.append("WINDOW_TYPE_NORMAL");
break;
- case aura::client::WINDOW_TYPE_POPUP:
+ case ui::wm::WINDOW_TYPE_POPUP:
property.append("WINDOW_TYPE_POPUP");
break;
- case aura::client::WINDOW_TYPE_CONTROL:
+ case ui::wm::WINDOW_TYPE_CONTROL:
property.append("WINDOW_TYPE_CONTROL");
break;
- case aura::client::WINDOW_TYPE_PANEL:
+ case ui::wm::WINDOW_TYPE_PANEL:
property.append("WINDOW_TYPE_PANEL");
break;
- case aura::client::WINDOW_TYPE_MENU:
+ case ui::wm::WINDOW_TYPE_MENU:
property.append("WINDOW_TYPE_MENU");
break;
- case aura::client::WINDOW_TYPE_TOOLTIP:
+ case ui::wm::WINDOW_TYPE_TOOLTIP:
property.append("WINDOW_TYPE_TOOLTIP");
break;
default:
« no previous file with comments | « ui/aura/window.cc ('k') | ui/views/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698