| 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 const WebKit::WebWindowFeatures& features, | 441 const WebKit::WebWindowFeatures& features, |
| 442 const WebKit::WebString& frame_name, | 442 const WebKit::WebString& frame_name, |
| 443 WebKit::WebNavigationPolicy policy); | 443 WebKit::WebNavigationPolicy policy); |
| 444 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 444 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
| 445 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 445 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
| 446 const WebKit::WebPopupMenuInfo& popup_menu_info, | 446 const WebKit::WebPopupMenuInfo& popup_menu_info, |
| 447 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 447 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
| 448 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); | 448 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); |
| 449 virtual bool shouldReportDetailedMessageForSource( | 449 virtual bool shouldReportDetailedMessageForSource( |
| 450 const WebKit::WebString& source); | 450 const WebKit::WebString& source); |
| 451 // TODO(rdevlin.cronin): Remove this version once | |
| 452 // https://codereview.chromium.org/18822004/ lands. | |
| 453 virtual void didAddMessageToConsole( | 451 virtual void didAddMessageToConsole( |
| 454 const WebKit::WebConsoleMessage& message, | 452 const WebKit::WebConsoleMessage& message, |
| 455 const WebKit::WebString& source_name, | 453 const WebKit::WebString& source_name, |
| 456 unsigned source_line); | 454 unsigned source_line, |
| 457 virtual void didAddMessageToConsole( | 455 const WebKit::WebString& stack_trace); |
| 458 const WebKit::WebConsoleMessage& message, | |
| 459 const WebKit::WebString& source_name, | |
| 460 unsigned source_line, const WebKit::WebString& stack_trace); | |
| 461 virtual void printPage(WebKit::WebFrame* frame); | 456 virtual void printPage(WebKit::WebFrame* frame); |
| 462 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 457 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 463 virtual bool enumerateChosenDirectory( | 458 virtual bool enumerateChosenDirectory( |
| 464 const WebKit::WebString& path, | 459 const WebKit::WebString& path, |
| 465 WebKit::WebFileChooserCompletion* chooser_completion); | 460 WebKit::WebFileChooserCompletion* chooser_completion); |
| 466 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 461 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
| 467 virtual void didStartLoading(); | 462 virtual void didStartLoading(); |
| 468 virtual void didStopLoading(); | 463 virtual void didStopLoading(); |
| 469 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 464 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
| 470 double load_progress); | 465 double load_progress); |
| (...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1575 // use the Observer interface to filter IPC messages and receive frame change | 1570 // use the Observer interface to filter IPC messages and receive frame change |
| 1576 // notifications. | 1571 // notifications. |
| 1577 // --------------------------------------------------------------------------- | 1572 // --------------------------------------------------------------------------- |
| 1578 | 1573 |
| 1579 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1574 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1580 }; | 1575 }; |
| 1581 | 1576 |
| 1582 } // namespace content | 1577 } // namespace content |
| 1583 | 1578 |
| 1584 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1579 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |