| OLD | NEW |
| 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 |
| OLD | NEW |