| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 bool is_new_navigation); | 186 bool is_new_navigation); |
| 187 virtual void DidReceiveTitle(WebView* webview, | 187 virtual void DidReceiveTitle(WebView* webview, |
| 188 const std::wstring& title, | 188 const std::wstring& title, |
| 189 WebFrame* frame); | 189 WebFrame* frame); |
| 190 virtual void DidFinishLoadForFrame(WebView* webview, | 190 virtual void DidFinishLoadForFrame(WebView* webview, |
| 191 WebFrame* frame); | 191 WebFrame* frame); |
| 192 virtual void DidFailLoadWithError(WebView* webview, | 192 virtual void DidFailLoadWithError(WebView* webview, |
| 193 const WebError& error, | 193 const WebError& error, |
| 194 WebFrame* forFrame); | 194 WebFrame* forFrame); |
| 195 virtual void DidFinishDocumentLoadForFrame(WebView* webview, WebFrame* frame); | 195 virtual void DidFinishDocumentLoadForFrame(WebView* webview, WebFrame* frame); |
| 196 virtual bool DidLoadResourceFromMemoryCache(WebView* webview, | 196 virtual bool DidLoadResourceFromMemoryCache( |
| 197 const WebRequest& request, | 197 WebView* webview, |
| 198 const WebResponse& response, | 198 const WebRequest& request, |
| 199 WebFrame* frame); | 199 const WebResponse& response, |
| 200 WebFrame* frame, |
| 201 const std::string& frame_origin, |
| 202 const std::string& main_frame_origin); |
| 200 virtual void DidHandleOnloadEventsForFrame(WebView* webview, WebFrame* frame); | 203 virtual void DidHandleOnloadEventsForFrame(WebView* webview, WebFrame* frame); |
| 201 virtual void DidChangeLocationWithinPageForFrame(WebView* webview, | 204 virtual void DidChangeLocationWithinPageForFrame(WebView* webview, |
| 202 WebFrame* frame, | 205 WebFrame* frame, |
| 203 bool is_new_navigation); | 206 bool is_new_navigation); |
| 204 virtual void DidReceiveIconForFrame(WebView* webview, WebFrame* frame); | 207 virtual void DidReceiveIconForFrame(WebView* webview, WebFrame* frame); |
| 205 | 208 |
| 206 virtual void WillPerformClientRedirect(WebView* webview, | 209 virtual void WillPerformClientRedirect(WebView* webview, |
| 207 WebFrame* frame, | 210 WebFrame* frame, |
| 208 const GURL& src_url, | 211 const GURL& src_url, |
| 209 const GURL& dest_url, | 212 const GURL& dest_url, |
| (...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 // change but is overridden by tests. | 802 // change but is overridden by tests. |
| 800 int delay_seconds_for_form_state_sync_; | 803 int delay_seconds_for_form_state_sync_; |
| 801 | 804 |
| 802 // A set of audio renderers registered to use IPC for audio output. | 805 // A set of audio renderers registered to use IPC for audio output. |
| 803 IDMap<AudioRendererImpl> audio_renderers_; | 806 IDMap<AudioRendererImpl> audio_renderers_; |
| 804 | 807 |
| 805 DISALLOW_COPY_AND_ASSIGN(RenderView); | 808 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 806 }; | 809 }; |
| 807 | 810 |
| 808 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 811 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |