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

Side by Side Diff: content/browser/renderer_host/render_widget_host_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/renderer_host/render_widget_host_view.h" 5 #include "content/public/browser/render_widget_host_view.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 // static 9 // static
10 void content::RenderWidgetHostViewPort::GetDefaultScreenInfo( 10 void content::RenderWidgetHostViewPort::GetDefaultScreenInfo(
11 WebKit::WebScreenInfo* results) { 11 WebKit::WebScreenInfo* results) {
12 NOTIMPLEMENTED(); 12 NOTIMPLEMENTED();
13 } 13 }
14 14
15 //////////////////////////////////////////////////////////////////////////////// 15 ////////////////////////////////////////////////////////////////////////////////
16 // RenderWidgetHostView, public: 16 // RenderWidgetHostView, public:
17 17
18 // static 18 // static
19 RenderWidgetHostView* RenderWidgetHostView::CreateViewForWidget( 19 content::RenderWidgetHostView* RenderWidgetHostView::CreateViewForWidget(
20 RenderWidgetHost* widget) { 20 RenderWidgetHost* widget) {
21 NOTIMPLEMENTED(); 21 NOTIMPLEMENTED();
22 return NULL; 22 return NULL;
23 } 23 }
24 24
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view.h ('k') | content/browser/renderer_host/render_widget_host_view_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698