| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 const WebKit::WebString& frame_name); | 348 const WebKit::WebString& frame_name); |
| 349 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 349 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
| 350 virtual WebKit::WebWidget* createPopupMenu( | 350 virtual WebKit::WebWidget* createPopupMenu( |
| 351 const WebKit::WebPopupMenuInfo& info); | 351 const WebKit::WebPopupMenuInfo& info); |
| 352 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 352 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
| 353 const WebKit::WebPopupMenuInfo& popup_menu_info, | 353 const WebKit::WebPopupMenuInfo& popup_menu_info, |
| 354 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 354 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
| 355 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( | 355 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( |
| 356 unsigned quota); | 356 unsigned quota); |
| 357 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D( | 357 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D( |
| 358 const WebKit::WebGraphicsContext3D::Attributes& attributes); |
| 359 // TODO(jamesr): remove this form once removed upstream. |
| 360 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D( |
| 358 const WebKit::WebGraphicsContext3D::Attributes& attributes, | 361 const WebKit::WebGraphicsContext3D::Attributes& attributes, |
| 359 bool direct); | 362 bool direct); |
| 360 virtual void didAddMessageToConsole( | 363 virtual void didAddMessageToConsole( |
| 361 const WebKit::WebConsoleMessage& message, | 364 const WebKit::WebConsoleMessage& message, |
| 362 const WebKit::WebString& source_name, | 365 const WebKit::WebString& source_name, |
| 363 unsigned source_line); | 366 unsigned source_line); |
| 364 virtual void printPage(WebKit::WebFrame* frame); | 367 virtual void printPage(WebKit::WebFrame* frame); |
| 365 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 368 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 366 virtual bool enumerateChosenDirectory( | 369 virtual bool enumerateChosenDirectory( |
| 367 const WebKit::WebString& path, | 370 const WebKit::WebString& path, |
| (...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1296 // bunch of stuff, you should probably create a helper class and put your | 1299 // bunch of stuff, you should probably create a helper class and put your |
| 1297 // data and methods on that to avoid bloating RenderView more. You can | 1300 // data and methods on that to avoid bloating RenderView more. You can |
| 1298 // use the Observer interface to filter IPC messages and receive frame change | 1301 // use the Observer interface to filter IPC messages and receive frame change |
| 1299 // notifications. | 1302 // notifications. |
| 1300 // --------------------------------------------------------------------------- | 1303 // --------------------------------------------------------------------------- |
| 1301 | 1304 |
| 1302 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1305 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1303 }; | 1306 }; |
| 1304 | 1307 |
| 1305 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1308 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |