OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/shell/browser/shell_web_contents_view_delegate.h" | 5 #include "content/shell/browser/shell_web_contents_view_delegate.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "content/public/browser/render_frame_host.h" | 8 #include "content/public/browser/render_frame_host.h" |
9 #include "content/public/browser/render_process_host.h" | 9 #include "content/public/browser/render_process_host.h" |
10 #include "content/public/browser/render_view_host.h" | 10 #include "content/public/browser/render_view_host.h" |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 bool ShellWebContentsViewDelegate::Focus() { | 245 bool ShellWebContentsViewDelegate::Focus() { |
246 return false; | 246 return false; |
247 } | 247 } |
248 | 248 |
249 void ShellWebContentsViewDelegate::TakeFocus(bool reverse) { | 249 void ShellWebContentsViewDelegate::TakeFocus(bool reverse) { |
250 } | 250 } |
251 | 251 |
252 void ShellWebContentsViewDelegate::SizeChanged(const gfx::Size& size) { | 252 void ShellWebContentsViewDelegate::SizeChanged(const gfx::Size& size) { |
253 } | 253 } |
254 | 254 |
| 255 void ShellWebContentsViewDelegate::ShowLinkDisambiguationPopup( |
| 256 const gfx::Rect& target_rect, |
| 257 const SkBitmap& zoomed_bitmap, |
| 258 const gfx::NativeView content, |
| 259 const GestureCallback callback) { |
| 260 } |
| 261 |
255 } // namespace content | 262 } // namespace content |
OLD | NEW |