| 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 WebKit::WebNavigationPolicy policy); | 418 WebKit::WebNavigationPolicy policy); |
| 419 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 419 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
| 420 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 420 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
| 421 const WebKit::WebPopupMenuInfo& popup_menu_info, | 421 const WebKit::WebPopupMenuInfo& popup_menu_info, |
| 422 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 422 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
| 423 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); | 423 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(); |
| 424 virtual void didAddMessageToConsole( | 424 virtual void didAddMessageToConsole( |
| 425 const WebKit::WebConsoleMessage& message, | 425 const WebKit::WebConsoleMessage& message, |
| 426 const WebKit::WebString& source_name, | 426 const WebKit::WebString& source_name, |
| 427 unsigned source_line); | 427 unsigned source_line); |
| 428 virtual bool shouldReportDetailedMessage(const WebKit::WebString& source); |
| 429 virtual void reportDetailedMessage( |
| 430 const WebKit::WebString& source, |
| 431 WebKit::WebConsoleMessage::Level level, |
| 432 const WebKit::WebString& message, |
| 433 const WebKit::WebString& jsonStackTrace); |
| 428 virtual void printPage(WebKit::WebFrame* frame); | 434 virtual void printPage(WebKit::WebFrame* frame); |
| 429 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 435 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 430 virtual bool enumerateChosenDirectory( | 436 virtual bool enumerateChosenDirectory( |
| 431 const WebKit::WebString& path, | 437 const WebKit::WebString& path, |
| 432 WebKit::WebFileChooserCompletion* chooser_completion); | 438 WebKit::WebFileChooserCompletion* chooser_completion); |
| 433 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 439 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
| 434 virtual void didStartLoading(); | 440 virtual void didStartLoading(); |
| 435 virtual void didStopLoading(); | 441 virtual void didStopLoading(); |
| 436 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 442 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
| 437 double load_progress); | 443 double load_progress); |
| (...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1565 // use the Observer interface to filter IPC messages and receive frame change | 1571 // use the Observer interface to filter IPC messages and receive frame change |
| 1566 // notifications. | 1572 // notifications. |
| 1567 // --------------------------------------------------------------------------- | 1573 // --------------------------------------------------------------------------- |
| 1568 | 1574 |
| 1569 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1575 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1570 }; | 1576 }; |
| 1571 | 1577 |
| 1572 } // namespace content | 1578 } // namespace content |
| 1573 | 1579 |
| 1574 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1580 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |