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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 const WebKit::WebWindowFeatures& features, | 325 const WebKit::WebWindowFeatures& features, |
326 const WebKit::WebString& frame_name); | 326 const WebKit::WebString& frame_name); |
327 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 327 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
328 virtual WebKit::WebWidget* createPopupMenu( | 328 virtual WebKit::WebWidget* createPopupMenu( |
329 const WebKit::WebPopupMenuInfo& info); | 329 const WebKit::WebPopupMenuInfo& info); |
330 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 330 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
331 const WebKit::WebPopupMenuInfo& popup_menu_info, | 331 const WebKit::WebPopupMenuInfo& popup_menu_info, |
332 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 332 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
333 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( | 333 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( |
334 unsigned quota); | 334 unsigned quota); |
| 335 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D( |
| 336 WebKit::WebGraphicsContext3D::Attributes attributes, |
| 337 WebKit::WebView* web_view, |
| 338 bool direct); |
335 virtual void didAddMessageToConsole( | 339 virtual void didAddMessageToConsole( |
336 const WebKit::WebConsoleMessage& message, | 340 const WebKit::WebConsoleMessage& message, |
337 const WebKit::WebString& source_name, | 341 const WebKit::WebString& source_name, |
338 unsigned source_line); | 342 unsigned source_line); |
339 virtual void printPage(WebKit::WebFrame* frame); | 343 virtual void printPage(WebKit::WebFrame* frame); |
340 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 344 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
341 virtual bool enumerateChosenDirectory( | 345 virtual bool enumerateChosenDirectory( |
342 const WebKit::WebString& path, | 346 const WebKit::WebString& path, |
343 WebKit::WebFileChooserCompletion* chooser_completion); | 347 WebKit::WebFileChooserCompletion* chooser_completion); |
344 virtual void didStartLoading(); | 348 virtual void didStartLoading(); |
(...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1244 // bunch of stuff, you should probably create a helper class and put your | 1248 // bunch of stuff, you should probably create a helper class and put your |
1245 // data and methods on that to avoid bloating RenderView more. You can | 1249 // data and methods on that to avoid bloating RenderView more. You can |
1246 // use the Observer interface to filter IPC messages and receive frame change | 1250 // use the Observer interface to filter IPC messages and receive frame change |
1247 // notifications. | 1251 // notifications. |
1248 // --------------------------------------------------------------------------- | 1252 // --------------------------------------------------------------------------- |
1249 | 1253 |
1250 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1254 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1251 }; | 1255 }; |
1252 | 1256 |
1253 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1257 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |