| 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 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 const blink::WebURLRequest& request, | 418 const blink::WebURLRequest& request, |
| 419 const blink::WebWindowFeatures& features, | 419 const blink::WebWindowFeatures& features, |
| 420 const blink::WebString& frame_name, | 420 const blink::WebString& frame_name, |
| 421 blink::WebNavigationPolicy policy, | 421 blink::WebNavigationPolicy policy, |
| 422 bool suppress_opener); | 422 bool suppress_opener); |
| 423 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type); | 423 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type); |
| 424 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( | 424 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( |
| 425 const blink::WebPopupMenuInfo& popup_menu_info, | 425 const blink::WebPopupMenuInfo& popup_menu_info, |
| 426 blink::WebExternalPopupMenuClient* popup_menu_client); | 426 blink::WebExternalPopupMenuClient* popup_menu_client); |
| 427 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); | 427 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); |
| 428 virtual bool shouldReportDetailedMessageForSource( | |
| 429 const blink::WebString& source); | |
| 430 virtual void didAddMessageToConsole( | |
| 431 const blink::WebConsoleMessage& message, | |
| 432 const blink::WebString& source_name, | |
| 433 unsigned source_line, | |
| 434 const blink::WebString& stack_trace); | |
| 435 virtual void printPage(blink::WebFrame* frame); | 428 virtual void printPage(blink::WebFrame* frame); |
| 436 virtual blink::WebNotificationPresenter* notificationPresenter(); | 429 virtual blink::WebNotificationPresenter* notificationPresenter(); |
| 437 virtual bool enumerateChosenDirectory( | 430 virtual bool enumerateChosenDirectory( |
| 438 const blink::WebString& path, | 431 const blink::WebString& path, |
| 439 blink::WebFileChooserCompletion* chooser_completion); | 432 blink::WebFileChooserCompletion* chooser_completion); |
| 440 virtual void didCancelCompositionOnSelectionChange(); | 433 virtual void didCancelCompositionOnSelectionChange(); |
| 441 virtual void didExecuteCommand(const blink::WebString& command_name); | 434 virtual void didExecuteCommand(const blink::WebString& command_name); |
| 442 virtual bool handleCurrentKeyboardEvent(); | 435 virtual bool handleCurrentKeyboardEvent(); |
| 443 virtual blink::WebColorChooser* createColorChooser( | 436 virtual blink::WebColorChooser* createColorChooser( |
| 444 blink::WebColorChooserClient*, | 437 blink::WebColorChooserClient*, |
| (...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1416 // use the Observer interface to filter IPC messages and receive frame change | 1409 // use the Observer interface to filter IPC messages and receive frame change |
| 1417 // notifications. | 1410 // notifications. |
| 1418 // --------------------------------------------------------------------------- | 1411 // --------------------------------------------------------------------------- |
| 1419 | 1412 |
| 1420 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1413 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1421 }; | 1414 }; |
| 1422 | 1415 |
| 1423 } // namespace content | 1416 } // namespace content |
| 1424 | 1417 |
| 1425 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1418 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |