| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 WebFrame* frame, | 226 WebFrame* frame, |
| 227 const WebKit::WebURLRequest& request, | 227 const WebKit::WebURLRequest& request, |
| 228 WebKit::WebNavigationType type, | 228 WebKit::WebNavigationType type, |
| 229 WindowOpenDisposition disposition, | 229 WindowOpenDisposition disposition, |
| 230 bool is_redirect); | 230 bool is_redirect); |
| 231 | 231 |
| 232 virtual WebView* CreateWebView(WebView* webview, | 232 virtual WebView* CreateWebView(WebView* webview, |
| 233 bool user_gesture, | 233 bool user_gesture, |
| 234 const GURL& creator_url); | 234 const GURL& creator_url); |
| 235 virtual WebWidget* CreatePopupWidget(WebView* webview, bool activatable); | 235 virtual WebWidget* CreatePopupWidget(WebView* webview, bool activatable); |
| 236 virtual WebWidget* CreatePopupWidgetWithInfo( |
| 237 WebView* webview, |
| 238 const WebKit::WebPopupMenuInfo& info); |
| 236 virtual WebPluginDelegate* CreatePluginDelegate( | 239 virtual WebPluginDelegate* CreatePluginDelegate( |
| 237 WebView* webview, | 240 WebView* webview, |
| 238 const GURL& url, | 241 const GURL& url, |
| 239 const std::string& mime_type, | 242 const std::string& mime_type, |
| 240 const std::string& clsid, | 243 const std::string& clsid, |
| 241 std::string* actual_mime_type); | 244 std::string* actual_mime_type); |
| 242 virtual WebKit::WebWorker* CreateWebWorker(WebKit::WebWorkerClient* client); | 245 virtual WebKit::WebWorker* CreateWebWorker(WebKit::WebWorkerClient* client); |
| 243 virtual WebKit::WebMediaPlayer* CreateWebMediaPlayer( | 246 virtual WebKit::WebMediaPlayer* CreateWebMediaPlayer( |
| 244 WebKit::WebMediaPlayerClient* client); | 247 WebKit::WebMediaPlayerClient* client); |
| 245 virtual void OnMissingPluginStatus(WebPluginDelegate* delegate, int status); | 248 virtual void OnMissingPluginStatus(WebPluginDelegate* delegate, int status); |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 791 // PrintWebViewHelper handles printing. Note that this object is constructed | 794 // PrintWebViewHelper handles printing. Note that this object is constructed |
| 792 // when printing for the first time but only destroyed with the RenderView. | 795 // when printing for the first time but only destroyed with the RenderView. |
| 793 scoped_ptr<PrintWebViewHelper> print_helper_; | 796 scoped_ptr<PrintWebViewHelper> print_helper_; |
| 794 | 797 |
| 795 RendererPreferences renderer_preferences_; | 798 RendererPreferences renderer_preferences_; |
| 796 | 799 |
| 797 DISALLOW_COPY_AND_ASSIGN(RenderView); | 800 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 798 }; | 801 }; |
| 799 | 802 |
| 800 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 803 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |