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