| 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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 WebKit::WebNavigationPolicy policy); | 426 WebKit::WebNavigationPolicy policy); |
| 427 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 427 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
| 428 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 428 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
| 429 const WebKit::WebPopupMenuInfo& popup_menu_info, | 429 const WebKit::WebPopupMenuInfo& popup_menu_info, |
| 430 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 430 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
| 431 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); | 431 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); |
| 432 virtual void didAddMessageToConsole( | 432 virtual void didAddMessageToConsole( |
| 433 const WebKit::WebConsoleMessage& message, | 433 const WebKit::WebConsoleMessage& message, |
| 434 const WebKit::WebString& source_name, | 434 const WebKit::WebString& source_name, |
| 435 unsigned source_line); | 435 unsigned source_line); |
| 436 virtual bool shouldReportDetailedMessage(const WebKit::WebString& source); |
| 437 virtual void reportDetailedMessage( |
| 438 const WebKit::WebString& source, |
| 439 WebKit::WebConsoleMessage::Level level, |
| 440 const WebKit::WebString& message, |
| 441 const WebKit::WebString& jsonStackTrace); |
| 436 virtual void printPage(WebKit::WebFrame* frame); | 442 virtual void printPage(WebKit::WebFrame* frame); |
| 437 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 443 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 438 virtual bool enumerateChosenDirectory( | 444 virtual bool enumerateChosenDirectory( |
| 439 const WebKit::WebString& path, | 445 const WebKit::WebString& path, |
| 440 WebKit::WebFileChooserCompletion* chooser_completion); | 446 WebKit::WebFileChooserCompletion* chooser_completion); |
| 441 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 447 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
| 442 virtual void didStartLoading(); | 448 virtual void didStartLoading(); |
| 443 virtual void didStopLoading(); | 449 virtual void didStopLoading(); |
| 444 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 450 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
| 445 double load_progress); | 451 double load_progress); |
| (...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1577 // use the Observer interface to filter IPC messages and receive frame change | 1583 // use the Observer interface to filter IPC messages and receive frame change |
| 1578 // notifications. | 1584 // notifications. |
| 1579 // --------------------------------------------------------------------------- | 1585 // --------------------------------------------------------------------------- |
| 1580 | 1586 |
| 1581 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1587 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1582 }; | 1588 }; |
| 1583 | 1589 |
| 1584 } // namespace content | 1590 } // namespace content |
| 1585 | 1591 |
| 1586 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1592 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |