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/shell/shell_web_contents_view_delegate.h" | 5 #include "content/shell/shell_web_contents_view_delegate.h" |
6 | 6 |
7 #include "content/public/browser/devtools_http_handler.h" | 7 #include "content/public/browser/devtools_http_handler.h" |
8 #include "content/public/browser/render_process_host.h" | 8 #include "content/public/browser/render_process_host.h" |
9 #include "content/public/browser/render_view_host.h" | 9 #include "content/public/browser/render_view_host.h" |
10 #include "content/public/browser/render_widget_host_view.h" | 10 #include "content/public/browser/render_widget_host_view.h" |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 url, | 234 url, |
235 NULL, | 235 NULL, |
236 MSG_ROUTING_NONE, | 236 MSG_ROUTING_NONE, |
237 NULL); | 237 NULL); |
238 break; | 238 break; |
239 } | 239 } |
240 } | 240 } |
241 } | 241 } |
242 | 242 |
243 WebDragDestDelegate* ShellWebContentsViewDelegate::GetDragDestDelegate() { | 243 WebDragDestDelegate* ShellWebContentsViewDelegate::GetDragDestDelegate() { |
244 NOTIMPLEMENTED(); | |
245 return NULL; | 244 return NULL; |
246 } | 245 } |
247 | 246 |
248 void ShellWebContentsViewDelegate::StoreFocus() { | 247 void ShellWebContentsViewDelegate::StoreFocus() { |
249 NOTIMPLEMENTED(); | |
250 } | 248 } |
251 | 249 |
252 void ShellWebContentsViewDelegate::RestoreFocus() { | 250 void ShellWebContentsViewDelegate::RestoreFocus() { |
253 NOTIMPLEMENTED(); | |
254 } | 251 } |
255 | 252 |
256 bool ShellWebContentsViewDelegate::Focus() { | 253 bool ShellWebContentsViewDelegate::Focus() { |
257 NOTIMPLEMENTED(); | |
258 return false; | 254 return false; |
259 } | 255 } |
260 | 256 |
261 void ShellWebContentsViewDelegate::TakeFocus(bool reverse) { | 257 void ShellWebContentsViewDelegate::TakeFocus(bool reverse) { |
262 NOTIMPLEMENTED(); | |
263 } | 258 } |
264 | 259 |
265 void ShellWebContentsViewDelegate::SizeChanged(const gfx::Size& size) { | 260 void ShellWebContentsViewDelegate::SizeChanged(const gfx::Size& size) { |
266 NOTIMPLEMENTED(); | |
267 } | 261 } |
268 | 262 |
269 } // namespace content | 263 } // namespace content |
OLD | NEW |