| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 WebFrame* frame, | 215 WebFrame* frame, |
| 216 const GURL& source); | 216 const GURL& source); |
| 217 virtual void WillSubmitForm(WebView* webview, WebFrame* frame, | 217 virtual void WillSubmitForm(WebView* webview, WebFrame* frame, |
| 218 const WebKit::WebForm& form); | 218 const WebKit::WebForm& form); |
| 219 virtual void WillSendRequest(WebView* webview, | 219 virtual void WillSendRequest(WebView* webview, |
| 220 uint32 identifier, | 220 uint32 identifier, |
| 221 WebKit::WebURLRequest* request); | 221 WebKit::WebURLRequest* request); |
| 222 | 222 |
| 223 virtual void WindowObjectCleared(WebFrame* webframe); | 223 virtual void WindowObjectCleared(WebFrame* webframe); |
| 224 virtual void DocumentElementAvailable(WebFrame* webframe); | 224 virtual void DocumentElementAvailable(WebFrame* webframe); |
| 225 virtual void DidCreateScriptContext(WebFrame* webframe); |
| 226 virtual void DidDestroyScriptContext(WebFrame* webframe); |
| 225 | 227 |
| 226 virtual WindowOpenDisposition DispositionForNavigationAction( | 228 virtual WindowOpenDisposition DispositionForNavigationAction( |
| 227 WebView* webview, | 229 WebView* webview, |
| 228 WebFrame* frame, | 230 WebFrame* frame, |
| 229 const WebKit::WebURLRequest& request, | 231 const WebKit::WebURLRequest& request, |
| 230 WebKit::WebNavigationType type, | 232 WebKit::WebNavigationType type, |
| 231 WindowOpenDisposition disposition, | 233 WindowOpenDisposition disposition, |
| 232 bool is_redirect); | 234 bool is_redirect); |
| 233 | 235 |
| 234 virtual WebView* CreateWebView(WebView* webview, | 236 virtual WebView* CreateWebView(WebView* webview, |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 784 // PrintWebViewHelper handles printing. Note that this object is constructed | 786 // PrintWebViewHelper handles printing. Note that this object is constructed |
| 785 // when printing for the first time but only destroyed with the RenderView. | 787 // when printing for the first time but only destroyed with the RenderView. |
| 786 scoped_ptr<PrintWebViewHelper> print_helper_; | 788 scoped_ptr<PrintWebViewHelper> print_helper_; |
| 787 | 789 |
| 788 RendererPreferences renderer_preferences_; | 790 RendererPreferences renderer_preferences_; |
| 789 | 791 |
| 790 DISALLOW_COPY_AND_ASSIGN(RenderView); | 792 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 791 }; | 793 }; |
| 792 | 794 |
| 793 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 795 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |