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

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

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 8 years, 9 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/public/browser/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 #include "content/port/browser/render_widget_host_view_port.h" 8 #include "content/port/browser/render_widget_host_view_port.h"
9 9
10 // static 10 // static
11 void content::RenderWidgetHostViewPort::GetDefaultScreenInfo( 11 void content::RenderWidgetHostViewPort::GetDefaultScreenInfo(
12 WebKit::WebScreenInfo* results) { 12 WebKit::WebScreenInfo* results) {
13 NOTIMPLEMENTED(); 13 NOTIMPLEMENTED();
14 } 14 }
15 15
16 //////////////////////////////////////////////////////////////////////////////// 16 ////////////////////////////////////////////////////////////////////////////////
17 // RenderWidgetHostView, public: 17 // RenderWidgetHostView, public:
18 18
19 // static 19 // static
20 content::RenderWidgetHostView* 20 content::RenderWidgetHostView*
21 content::RenderWidgetHostView::CreateViewForWidget( 21 content::RenderWidgetHostView::CreateViewForWidget(
22 RenderWidgetHost* widget) { 22 content::RenderWidgetHost* widget) {
23 NOTIMPLEMENTED(); 23 NOTIMPLEMENTED();
24 return NULL; 24 return NULL;
25 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698