| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 WebKit::WebFrame* creator, | 389 WebKit::WebFrame* creator, |
| 390 const WebKit::WebURLRequest& request, | 390 const WebKit::WebURLRequest& request, |
| 391 const WebKit::WebWindowFeatures& features, | 391 const WebKit::WebWindowFeatures& features, |
| 392 const WebKit::WebString& frame_name); | 392 const WebKit::WebString& frame_name); |
| 393 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 393 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
| 394 virtual WebKit::WebWidget* createPopupMenu( | 394 virtual WebKit::WebWidget* createPopupMenu( |
| 395 const WebKit::WebPopupMenuInfo& info); | 395 const WebKit::WebPopupMenuInfo& info); |
| 396 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 396 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
| 397 const WebKit::WebPopupMenuInfo& popup_menu_info, | 397 const WebKit::WebPopupMenuInfo& popup_menu_info, |
| 398 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 398 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
| 399 virtual WebKit::WebWidget* createFullscreenWindow( | |
| 400 WebKit::WebPopupType popup_type); | |
| 401 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( | 399 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( |
| 402 unsigned quota); | 400 unsigned quota); |
| 403 virtual void didAddMessageToConsole( | 401 virtual void didAddMessageToConsole( |
| 404 const WebKit::WebConsoleMessage& message, | 402 const WebKit::WebConsoleMessage& message, |
| 405 const WebKit::WebString& source_name, | 403 const WebKit::WebString& source_name, |
| 406 unsigned source_line); | 404 unsigned source_line); |
| 407 virtual void printPage(WebKit::WebFrame* frame); | 405 virtual void printPage(WebKit::WebFrame* frame); |
| 408 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 406 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 409 virtual void didStartLoading(); | 407 virtual void didStartLoading(); |
| 410 virtual void didStopLoading(); | 408 virtual void didStopLoading(); |
| (...skipping 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1454 // bunch of stuff, you should probably create a helper class and put your | 1452 // bunch of stuff, you should probably create a helper class and put your |
| 1455 // data and methods on that to avoid bloating RenderView more. You can use | 1453 // data and methods on that to avoid bloating RenderView more. You can use |
| 1456 // the Observer interface to filter IPC messages and receive frame change | 1454 // the Observer interface to filter IPC messages and receive frame change |
| 1457 // notifications. | 1455 // notifications. |
| 1458 // --------------------------------------------------------------------------- | 1456 // --------------------------------------------------------------------------- |
| 1459 | 1457 |
| 1460 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1458 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1461 }; | 1459 }; |
| 1462 | 1460 |
| 1463 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1461 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |