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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 const WebKit::WebString& frame_name); | 335 const WebKit::WebString& frame_name); |
336 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 336 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
337 virtual WebKit::WebWidget* createPopupMenu( | 337 virtual WebKit::WebWidget* createPopupMenu( |
338 const WebKit::WebPopupMenuInfo& info); | 338 const WebKit::WebPopupMenuInfo& info); |
339 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 339 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
340 const WebKit::WebPopupMenuInfo& popup_menu_info, | 340 const WebKit::WebPopupMenuInfo& popup_menu_info, |
341 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 341 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
342 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( | 342 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( |
343 unsigned quota); | 343 unsigned quota); |
344 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D( | 344 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D( |
345 WebKit::WebGraphicsContext3D::Attributes attributes, | 345 const WebKit::WebGraphicsContext3D::Attributes& attributes, |
346 bool direct); | 346 bool direct); |
347 virtual void didAddMessageToConsole( | 347 virtual void didAddMessageToConsole( |
348 const WebKit::WebConsoleMessage& message, | 348 const WebKit::WebConsoleMessage& message, |
349 const WebKit::WebString& source_name, | 349 const WebKit::WebString& source_name, |
350 unsigned source_line); | 350 unsigned source_line); |
351 virtual void printPage(WebKit::WebFrame* frame); | 351 virtual void printPage(WebKit::WebFrame* frame); |
352 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 352 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
353 virtual bool enumerateChosenDirectory( | 353 virtual bool enumerateChosenDirectory( |
354 const WebKit::WebString& path, | 354 const WebKit::WebString& path, |
355 WebKit::WebFileChooserCompletion* chooser_completion); | 355 WebKit::WebFileChooserCompletion* chooser_completion); |
(...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1260 // bunch of stuff, you should probably create a helper class and put your | 1260 // bunch of stuff, you should probably create a helper class and put your |
1261 // data and methods on that to avoid bloating RenderView more. You can | 1261 // data and methods on that to avoid bloating RenderView more. You can |
1262 // use the Observer interface to filter IPC messages and receive frame change | 1262 // use the Observer interface to filter IPC messages and receive frame change |
1263 // notifications. | 1263 // notifications. |
1264 // --------------------------------------------------------------------------- | 1264 // --------------------------------------------------------------------------- |
1265 | 1265 |
1266 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1266 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1267 }; | 1267 }; |
1268 | 1268 |
1269 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1269 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |