diff options
author | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-20 14:46:58 +0000 |
---|---|---|
committer | joi@chromium.org <joi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-20 14:46:58 +0000 |
commit | 5626b089581b55c06b72b9bec61f95f7e1337e4b (patch) | |
tree | 9ce49d7b7a6a6755165fe37ae7b906cea8d991f2 /chrome/browser/instant/instant_controller.cc | |
parent | d26910994bea139ed625e6962a6e3755512f318f (diff) | |
download | chromium_src-5626b089581b55c06b72b9bec61f95f7e1337e4b.zip chromium_src-5626b089581b55c06b72b9bec61f95f7e1337e4b.tar.gz chromium_src-5626b089581b55c06b72b9bec61f95f7e1337e4b.tar.bz2 |
Move RenderWidgetHostView into content namespace. Fix include paths.
TBR=pkasting@chromium.org
BUG=98716
Initial commit: 122753
Reverted (linux_chromeos_gtk build problem): r122755
Review URL: https://chromiumcodereview.appspot.com/9420007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122758 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/instant/instant_controller.cc')
-rw-r--r-- | chrome/browser/instant/instant_controller.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/instant/instant_controller.cc b/chrome/browser/instant/instant_controller.cc index f39ecfa..114a724 100644 --- a/chrome/browser/instant/instant_controller.cc +++ b/chrome/browser/instant/instant_controller.cc @@ -26,8 +26,8 @@ #include "chrome/common/chrome_notification_types.h" #include "chrome/common/chrome_switches.h" #include "chrome/common/pref_names.h" -#include "content/browser/renderer_host/render_widget_host_view.h" #include "content/public/browser/notification_service.h" +#include "content/public/browser/render_widget_host_view.h" #include "content/public/browser/web_contents.h" #if defined(TOOLKIT_VIEWS) @@ -313,7 +313,7 @@ void InstantController::OnAutocompleteLostFocus( return; } - RenderWidgetHostView* rwhv = + content::RenderWidgetHostView* rwhv = GetPreviewContents()->web_contents()->GetRenderWidgetHostView(); if (!view_gaining_focus || !rwhv) { DestroyPreviewContents(); |