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/web_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_impl.h" | 8 #include "content/browser/renderer_host/render_view_host_impl.h" |
9 | 9 |
10 WebContentsViewAndroid::WebContentsViewAndroid( | 10 WebContentsViewAndroid::WebContentsViewAndroid( |
11 content::WebContents* web_contents) | 11 content::WebContents* web_contents) |
12 : web_contents_(web_contents) { | 12 : web_contents_(web_contents) { |
13 } | 13 } |
14 | 14 |
15 WebContentsViewAndroid::~WebContentsViewAndroid() { | 15 WebContentsViewAndroid::~WebContentsViewAndroid() { |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 NOTIMPLEMENTED(); | 157 NOTIMPLEMENTED(); |
158 } | 158 } |
159 | 159 |
160 void WebContentsViewAndroid::GotFocus() { | 160 void WebContentsViewAndroid::GotFocus() { |
161 NOTIMPLEMENTED(); | 161 NOTIMPLEMENTED(); |
162 } | 162 } |
163 | 163 |
164 void WebContentsViewAndroid::TakeFocus(bool reverse) { | 164 void WebContentsViewAndroid::TakeFocus(bool reverse) { |
165 NOTIMPLEMENTED(); | 165 NOTIMPLEMENTED(); |
166 } | 166 } |
OLD | NEW |