| 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/web_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 #include "content/browser/web_contents/web_contents_impl.h" | 9 #include "content/browser/web_contents/web_contents_impl.h" |
| 10 | 10 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 114 |
| 115 void WebContentsViewAndroid::GetViewBounds(gfx::Rect* out) const { | 115 void WebContentsViewAndroid::GetViewBounds(gfx::Rect* out) const { |
| 116 NOTIMPLEMENTED(); | 116 NOTIMPLEMENTED(); |
| 117 } | 117 } |
| 118 | 118 |
| 119 void WebContentsViewAndroid::ShowContextMenu( | 119 void WebContentsViewAndroid::ShowContextMenu( |
| 120 const content::ContextMenuParams& params) { | 120 const content::ContextMenuParams& params) { |
| 121 NOTIMPLEMENTED(); | 121 NOTIMPLEMENTED(); |
| 122 } | 122 } |
| 123 | 123 |
| 124 void WebContentsViewAndroid::ShowPopupMenu( |
| 125 const gfx::Rect& bounds, |
| 126 int item_height, |
| 127 double item_font_size, |
| 128 int selected_item, |
| 129 const std::vector<WebMenuItem>& items, |
| 130 bool right_aligned, |
| 131 bool allow_multiple_selection) { |
| 132 NOTIMPLEMENTED(); |
| 133 } |
| 134 |
| 124 void WebContentsViewAndroid::StartDragging( | 135 void WebContentsViewAndroid::StartDragging( |
| 125 const WebDropData& drop_data, | 136 const WebDropData& drop_data, |
| 126 WebKit::WebDragOperationsMask allowed_ops, | 137 WebKit::WebDragOperationsMask allowed_ops, |
| 127 const SkBitmap& image, | 138 const SkBitmap& image, |
| 128 const gfx::Point& image_offset) { | 139 const gfx::Point& image_offset) { |
| 129 NOTIMPLEMENTED(); | 140 NOTIMPLEMENTED(); |
| 130 } | 141 } |
| 131 | 142 |
| 132 void WebContentsViewAndroid::UpdateDragCursor(WebKit::WebDragOperation op) { | 143 void WebContentsViewAndroid::UpdateDragCursor(WebKit::WebDragOperation op) { |
| 133 NOTIMPLEMENTED(); | 144 NOTIMPLEMENTED(); |
| 134 } | 145 } |
| 135 | 146 |
| 136 void WebContentsViewAndroid::GotFocus() { | 147 void WebContentsViewAndroid::GotFocus() { |
| 137 NOTIMPLEMENTED(); | 148 NOTIMPLEMENTED(); |
| 138 } | 149 } |
| 139 | 150 |
| 140 void WebContentsViewAndroid::TakeFocus(bool reverse) { | 151 void WebContentsViewAndroid::TakeFocus(bool reverse) { |
| 141 NOTIMPLEMENTED(); | 152 NOTIMPLEMENTED(); |
| 142 } | 153 } |
| OLD | NEW |