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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_base.cc

Issue 9420007: Move RenderWidgetHostView into content namespace. Fix include paths. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix linux_chromeos_gtk build issue not caught by trybots. Created 8 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/renderer_host/render_widget_host_view.h" 5 #include "content/browser/renderer_host/render_widget_host_view_base.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/browser/accessibility/browser_accessibility_manager.h" 8 #include "content/browser/accessibility/browser_accessibility_manager.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h"
10 10
11 #if defined(TOOLKIT_USES_GTK) 11 #if defined(TOOLKIT_USES_GTK)
12 #include <gdk/gdkx.h> 12 #include <gdk/gdkx.h>
13 #include <gtk/gtk.h> 13 #include <gtk/gtk.h>
14 14
15 #include "content/browser/renderer_host/gtk_window_utils.h" 15 #include "content/browser/renderer_host/gtk_window_utils.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 void RenderWidgetHostViewBase::SetPopupType(WebKit::WebPopupType popup_type) { 84 void RenderWidgetHostViewBase::SetPopupType(WebKit::WebPopupType popup_type) {
85 popup_type_ = popup_type; 85 popup_type_ = popup_type;
86 } 86 }
87 87
88 WebKit::WebPopupType RenderWidgetHostViewBase::GetPopupType() { 88 WebKit::WebPopupType RenderWidgetHostViewBase::GetPopupType() {
89 return popup_type_; 89 return popup_type_;
90 } 90 }
91 91
92 } // namespace content 92 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698