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