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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 virtual bool isPointerLocked(); | 333 virtual bool isPointerLocked(); |
334 | 334 |
335 // WebKit::WebViewClient implementation -------------------------------------- | 335 // WebKit::WebViewClient implementation -------------------------------------- |
336 | 336 |
337 virtual WebKit::WebView* createView( | 337 virtual WebKit::WebView* createView( |
338 WebKit::WebFrame* creator, | 338 WebKit::WebFrame* creator, |
339 const WebKit::WebURLRequest& request, | 339 const WebKit::WebURLRequest& request, |
340 const WebKit::WebWindowFeatures& features, | 340 const WebKit::WebWindowFeatures& features, |
341 const WebKit::WebString& frame_name, | 341 const WebKit::WebString& frame_name, |
342 WebKit::WebNavigationPolicy policy); | 342 WebKit::WebNavigationPolicy policy); |
343 // TODO(creis): Remove as part of http://crbug.com/69267. | |
344 virtual WebKit::WebView* createView( | |
345 WebKit::WebFrame* creator, | |
346 const WebKit::WebURLRequest& request, | |
347 const WebKit::WebWindowFeatures& features, | |
348 const WebKit::WebString& frame_name); | |
349 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 343 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
350 virtual WebKit::WebWidget* createPopupMenu( | 344 virtual WebKit::WebWidget* createPopupMenu( |
351 const WebKit::WebPopupMenuInfo& info); | 345 const WebKit::WebPopupMenuInfo& info); |
352 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( | 346 virtual WebKit::WebExternalPopupMenu* createExternalPopupMenu( |
353 const WebKit::WebPopupMenuInfo& popup_menu_info, | 347 const WebKit::WebPopupMenuInfo& popup_menu_info, |
354 WebKit::WebExternalPopupMenuClient* popup_menu_client); | 348 WebKit::WebExternalPopupMenuClient* popup_menu_client); |
355 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( | 349 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( |
356 unsigned quota); | 350 unsigned quota); |
357 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D( | 351 virtual WebKit::WebGraphicsContext3D* createGraphicsContext3D( |
358 const WebKit::WebGraphicsContext3D::Attributes& attributes, | 352 const WebKit::WebGraphicsContext3D::Attributes& attributes, |
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1298 // bunch of stuff, you should probably create a helper class and put your | 1292 // bunch of stuff, you should probably create a helper class and put your |
1299 // data and methods on that to avoid bloating RenderView more. You can | 1293 // data and methods on that to avoid bloating RenderView more. You can |
1300 // use the Observer interface to filter IPC messages and receive frame change | 1294 // use the Observer interface to filter IPC messages and receive frame change |
1301 // notifications. | 1295 // notifications. |
1302 // --------------------------------------------------------------------------- | 1296 // --------------------------------------------------------------------------- |
1303 | 1297 |
1304 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1298 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1305 }; | 1299 }; |
1306 | 1300 |
1307 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1301 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |