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 e7fc182907b6e92264b951db51948c4b2dc294b4..1d1322afebdc4b00896d0f2abf99b3f6e18a17a0 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" |
@@ -514,7 +514,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"); |
@@ -528,7 +528,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); |