| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 | 317 |
| 318 // WebKit::WebViewClient implementation -------------------------------------- | 318 // WebKit::WebViewClient implementation -------------------------------------- |
| 319 | 319 |
| 320 virtual WebKit::WebView* createView( | 320 virtual WebKit::WebView* createView( |
| 321 WebKit::WebFrame* creator, | 321 WebKit::WebFrame* creator, |
| 322 const WebKit::WebWindowFeatures& features, | 322 const WebKit::WebWindowFeatures& features, |
| 323 const WebKit::WebString& frame_name); | 323 const WebKit::WebString& frame_name); |
| 324 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 324 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
| 325 virtual WebKit::WebWidget* createPopupMenu( | 325 virtual WebKit::WebWidget* createPopupMenu( |
| 326 const WebKit::WebPopupMenuInfo& info); | 326 const WebKit::WebPopupMenuInfo& info); |
| 327 virtual WebKit::WebWidget* createFullscreenWindow( |
| 328 WebKit::WebPopupType popup_type); |
| 327 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( | 329 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace( |
| 328 unsigned quota); | 330 unsigned quota); |
| 329 virtual void didAddMessageToConsole( | 331 virtual void didAddMessageToConsole( |
| 330 const WebKit::WebConsoleMessage& message, | 332 const WebKit::WebConsoleMessage& message, |
| 331 const WebKit::WebString& source_name, | 333 const WebKit::WebString& source_name, |
| 332 unsigned source_line); | 334 unsigned source_line); |
| 333 virtual void printPage(WebKit::WebFrame* frame); | 335 virtual void printPage(WebKit::WebFrame* frame); |
| 334 virtual WebKit::WebNotificationPresenter* notificationPresenter(); | 336 virtual WebKit::WebNotificationPresenter* notificationPresenter(); |
| 335 virtual void didStartLoading(); | 337 virtual void didStartLoading(); |
| 336 virtual void didStopLoading(); | 338 virtual void didStopLoading(); |
| (...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 // ADDING NEW DATA? Please see if it fits appropriately in one of the above | 1291 // ADDING NEW DATA? Please see if it fits appropriately in one of the above |
| 1290 // sections rather than throwing it randomly at the end. If you're adding a | 1292 // sections rather than throwing it randomly at the end. If you're adding a |
| 1291 // bunch of stuff, you should probably create a helper class and put your | 1293 // bunch of stuff, you should probably create a helper class and put your |
| 1292 // data and methods on that to avoid bloating RenderView more. | 1294 // data and methods on that to avoid bloating RenderView more. |
| 1293 // --------------------------------------------------------------------------- | 1295 // --------------------------------------------------------------------------- |
| 1294 | 1296 |
| 1295 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1297 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1296 }; | 1298 }; |
| 1297 | 1299 |
| 1298 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1300 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |