| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 const GURL& source); | 211 const GURL& source); |
| 212 virtual void WillCloseFrame(WebView* webview, WebFrame* frame); | 212 virtual void WillCloseFrame(WebView* webview, WebFrame* frame); |
| 213 virtual void WillSubmitForm(WebView* webview, WebFrame* frame, | 213 virtual void WillSubmitForm(WebView* webview, WebFrame* frame, |
| 214 const WebKit::WebForm& form); | 214 const WebKit::WebForm& form); |
| 215 virtual void WillSendRequest(WebView* webview, | 215 virtual void WillSendRequest(WebView* webview, |
| 216 uint32 identifier, | 216 uint32 identifier, |
| 217 WebKit::WebURLRequest* request); | 217 WebKit::WebURLRequest* request); |
| 218 | 218 |
| 219 virtual void WindowObjectCleared(WebFrame* webframe); | 219 virtual void WindowObjectCleared(WebFrame* webframe); |
| 220 virtual void DocumentElementAvailable(WebFrame* webframe); | 220 virtual void DocumentElementAvailable(WebFrame* webframe); |
| 221 virtual void DidCreateScriptContext(WebFrame* webframe); | 221 virtual void DidCreateScriptContextForFrame(WebFrame* webframe); |
| 222 virtual void DidDestroyScriptContext(WebFrame* webframe); | 222 virtual void DidDestroyScriptContextForFrame(WebFrame* webframe); |
| 223 virtual void DidCreateIsolatedScriptContext(WebFrame* webframe); |
| 223 | 224 |
| 224 virtual WindowOpenDisposition DispositionForNavigationAction( | 225 virtual WindowOpenDisposition DispositionForNavigationAction( |
| 225 WebView* webview, | 226 WebView* webview, |
| 226 WebFrame* frame, | 227 WebFrame* frame, |
| 227 const WebKit::WebURLRequest& request, | 228 const WebKit::WebURLRequest& request, |
| 228 WebKit::WebNavigationType type, | 229 WebKit::WebNavigationType type, |
| 229 WindowOpenDisposition disposition, | 230 WindowOpenDisposition disposition, |
| 230 bool is_redirect); | 231 bool is_redirect); |
| 231 | 232 |
| 232 virtual WebView* CreateWebView(WebView* webview, | 233 virtual WebView* CreateWebView(WebView* webview, |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 // PrintWebViewHelper handles printing. Note that this object is constructed | 795 // PrintWebViewHelper handles printing. Note that this object is constructed |
| 795 // when printing for the first time but only destroyed with the RenderView. | 796 // when printing for the first time but only destroyed with the RenderView. |
| 796 scoped_ptr<PrintWebViewHelper> print_helper_; | 797 scoped_ptr<PrintWebViewHelper> print_helper_; |
| 797 | 798 |
| 798 RendererPreferences renderer_preferences_; | 799 RendererPreferences renderer_preferences_; |
| 799 | 800 |
| 800 DISALLOW_COPY_AND_ASSIGN(RenderView); | 801 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 801 }; | 802 }; |
| 802 | 803 |
| 803 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 804 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |