Index: content/browser/renderer_host/render_widget_host_view_aura.cc |
diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc |
index 2478b1ba88eae5050b09bcf4f9c706d8f14d9534..dddc7b639b5c44ba404c6cb11d634b56bdd9bbf5 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_aura.cc |
+++ b/content/browser/renderer_host/render_widget_host_view_aura.cc |
@@ -56,7 +56,6 @@ |
#include "ui/aura/client/screen_position_client.h" |
#include "ui/aura/client/tooltip_client.h" |
#include "ui/aura/client/window_tree_client.h" |
-#include "ui/aura/client/window_types.h" |
#include "ui/aura/env.h" |
#include "ui/aura/root_window.h" |
#include "ui/aura/window.h" |
@@ -76,6 +75,7 @@ |
#include "ui/gfx/screen.h" |
#include "ui/gfx/size_conversions.h" |
#include "ui/gfx/skia_util.h" |
+#include "ui/wm/public/window_types.h" |
#if defined(OS_WIN) |
#include "base/win/windows_version.h" |
@@ -515,7 +515,7 @@ void RenderWidgetHostViewAura::InitAsPopup( |
old_child->popup_parent_host_view_ = NULL; |
} |
popup_parent_host_view_->popup_child_host_view_ = this; |
- window_->SetType(aura::client::WINDOW_TYPE_MENU); |
+ window_->SetType(ui::wm::WINDOW_TYPE_MENU); |
window_->Init(ui::LAYER_TEXTURED); |
window_->SetName("RenderWidgetHostViewAura"); |
@@ -533,7 +533,7 @@ void RenderWidgetHostViewAura::InitAsPopup( |
void RenderWidgetHostViewAura::InitAsFullscreen( |
RenderWidgetHostView* reference_host_view) { |
is_fullscreen_ = true; |
- window_->SetType(aura::client::WINDOW_TYPE_NORMAL); |
+ window_->SetType(ui::wm::WINDOW_TYPE_NORMAL); |
window_->Init(ui::LAYER_TEXTURED); |
window_->SetName("RenderWidgetHostViewAura"); |
window_->SetProperty(aura::client::kShowStateKey, ui::SHOW_STATE_FULLSCREEN); |