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

Side by Side Diff: content/browser/tab_contents/web_contents_view_android.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/tab_contents/web_contents_view_android.h" 5 #include "content/browser/tab_contents/web_contents_view_android.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "content/browser/renderer_host/render_view_host.h" 8 #include "content/browser/renderer_host/render_view_host.h"
9 #include "content/browser/renderer_host/render_widget_host.h" 9 #include "content/browser/renderer_host/render_widget_host.h"
10 10
11 WebContentsViewAndroid::WebContentsViewAndroid( 11 WebContentsViewAndroid::WebContentsViewAndroid(
12 content::WebContents* web_contents) 12 content::WebContents* web_contents)
13 : web_contents_(web_contents) { 13 : web_contents_(web_contents) {
14 } 14 }
15 15
16 WebContentsViewAndroid::~WebContentsViewAndroid() { 16 WebContentsViewAndroid::~WebContentsViewAndroid() {
17 } 17 }
18 18
19 void WebContentsViewAndroid::CreateView(const gfx::Size& initial_size) { 19 void WebContentsViewAndroid::CreateView(const gfx::Size& initial_size) {
20 NOTIMPLEMENTED(); 20 NOTIMPLEMENTED();
21 } 21 }
22 22
23 RenderWidgetHostView* WebContentsViewAndroid::CreateViewForWidget( 23 content::RenderWidgetHostView* WebContentsViewAndroid::CreateViewForWidget(
24 RenderWidgetHost* render_widget_host) { 24 RenderWidgetHost* render_widget_host) {
25 NOTIMPLEMENTED(); 25 NOTIMPLEMENTED();
26 return NULL; 26 return NULL;
27 } 27 }
28 28
29 gfx::NativeView WebContentsViewAndroid::GetNativeView() const { 29 gfx::NativeView WebContentsViewAndroid::GetNativeView() const {
30 NOTIMPLEMENTED(); 30 NOTIMPLEMENTED();
31 return NULL; 31 return NULL;
32 } 32 }
33 33
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 NOTIMPLEMENTED(); 166 NOTIMPLEMENTED();
167 } 167 }
168 168
169 void WebContentsViewAndroid::GotFocus() { 169 void WebContentsViewAndroid::GotFocus() {
170 NOTIMPLEMENTED(); 170 NOTIMPLEMENTED();
171 } 171 }
172 172
173 void WebContentsViewAndroid::TakeFocus(bool reverse) { 173 void WebContentsViewAndroid::TakeFocus(bool reverse) {
174 NOTIMPLEMENTED(); 174 NOTIMPLEMENTED();
175 } 175 }
OLDNEW
« no previous file with comments | « content/browser/tab_contents/web_contents_view_android.h ('k') | content/browser/tab_contents/web_contents_view_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698