| 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/tab_contents_view_android.h" | 5 #include "content/browser/tab_contents/tab_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 |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 140 |
| 141 void TabContentsViewAndroid::ShowCreatedWidget( | 141 void TabContentsViewAndroid::ShowCreatedWidget( |
| 142 int route_id, const gfx::Rect& initial_pos) { | 142 int route_id, const gfx::Rect& initial_pos) { |
| 143 NOTIMPLEMENTED(); | 143 NOTIMPLEMENTED(); |
| 144 } | 144 } |
| 145 | 145 |
| 146 void TabContentsViewAndroid::ShowCreatedFullscreenWidget(int route_id) { | 146 void TabContentsViewAndroid::ShowCreatedFullscreenWidget(int route_id) { |
| 147 NOTIMPLEMENTED(); | 147 NOTIMPLEMENTED(); |
| 148 } | 148 } |
| 149 | 149 |
| 150 void TabContentsViewAndroid::ShowContextMenu(const ContextMenuParams& params) { | 150 void TabContentsViewAndroid::ShowContextMenu( |
| 151 const content::ContextMenuParams& params) { |
| 151 NOTIMPLEMENTED(); | 152 NOTIMPLEMENTED(); |
| 152 } | 153 } |
| 153 | 154 |
| 154 void TabContentsViewAndroid::ShowPopupMenu( | 155 void TabContentsViewAndroid::ShowPopupMenu( |
| 155 const gfx::Rect& bounds, | 156 const gfx::Rect& bounds, |
| 156 int item_height, | 157 int item_height, |
| 157 double item_font_size, | 158 double item_font_size, |
| 158 int selected_item, | 159 int selected_item, |
| 159 const std::vector<WebMenuItem>& items, | 160 const std::vector<WebMenuItem>& items, |
| 160 bool right_aligned) { | 161 bool right_aligned) { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 173 NOTIMPLEMENTED(); | 174 NOTIMPLEMENTED(); |
| 174 } | 175 } |
| 175 | 176 |
| 176 void TabContentsViewAndroid::GotFocus() { | 177 void TabContentsViewAndroid::GotFocus() { |
| 177 NOTIMPLEMENTED(); | 178 NOTIMPLEMENTED(); |
| 178 } | 179 } |
| 179 | 180 |
| 180 void TabContentsViewAndroid::TakeFocus(bool reverse) { | 181 void TabContentsViewAndroid::TakeFocus(bool reverse) { |
| 181 NOTIMPLEMENTED(); | 182 NOTIMPLEMENTED(); |
| 182 } | 183 } |
| OLD | NEW |