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