| 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 413 virtual WebKit::WebView* createView( | 413 virtual WebKit::WebView* createView( |
| 414 WebKit::WebFrame* creator, | 414 WebKit::WebFrame* creator, |
| 415 const WebKit::WebURLRequest& request, | 415 const WebKit::WebURLRequest& request, |
| 416 const WebKit::WebWindowFeatures& features, | 416 const WebKit::WebWindowFeatures& features, |
| 417 const WebKit::WebString& frame_name, | 417 const WebKit::WebString& frame_name, |
| 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 unsigned quota); | |
| 425 virtual void didAddMessageToConsole( | 424 virtual void didAddMessageToConsole( |
| 426 const WebKit::WebConsoleMessage& message, | 425 const WebKit::WebConsoleMessage& message, |
| 427 const WebKit::WebString& source_name, | 426 const WebKit::WebString& source_name, |
| 428 unsigned source_line); | 427 unsigned source_line); |
| 429 virtual void printPage(WebKit::WebFrame* frame); | 428 virtual void printPage(WebKit::WebFrame* frame); |
| 430 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 429 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 431 virtual bool enumerateChosenDirectory( | 430 virtual bool enumerateChosenDirectory( |
| 432 const WebKit::WebString& path, | 431 const WebKit::WebString& path, |
| 433 WebKit::WebFileChooserCompletion* chooser_completion); | 432 WebKit::WebFileChooserCompletion* chooser_completion); |
| 434 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 433 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
| (...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1568 // use the Observer interface to filter IPC messages and receive frame change | 1567 // use the Observer interface to filter IPC messages and receive frame change |
| 1569 // notifications. | 1568 // notifications. |
| 1570 // --------------------------------------------------------------------------- | 1569 // --------------------------------------------------------------------------- |
| 1571 | 1570 |
| 1572 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1571 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1573 }; | 1572 }; |
| 1574 | 1573 |
| 1575 } // namespace content | 1574 } // namespace content |
| 1576 | 1575 |
| 1577 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1576 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |