Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(990)

Side by Side Diff: chrome/renderer/render_view.h

Issue 46026: Get rid of stashing a frame pointer with ResourceRequest and just store the r... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/renderer/render_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 WebFrame* frame, 207 WebFrame* frame,
208 const GURL& src_url, 208 const GURL& src_url,
209 const GURL& dest_url, 209 const GURL& dest_url,
210 unsigned int delay_seconds, 210 unsigned int delay_seconds,
211 unsigned int fire_date); 211 unsigned int fire_date);
212 virtual void DidCancelClientRedirect(WebView* webview, 212 virtual void DidCancelClientRedirect(WebView* webview,
213 WebFrame* frame); 213 WebFrame* frame);
214 virtual void DidCompleteClientRedirect(WebView* webview, 214 virtual void DidCompleteClientRedirect(WebView* webview,
215 WebFrame* frame, 215 WebFrame* frame,
216 const GURL& source); 216 const GURL& source);
217 virtual void WillSendRequest(WebView* webview,
218 uint32 identifier,
219 WebRequest* request);
217 220
218 virtual void WindowObjectCleared(WebFrame* webframe); 221 virtual void WindowObjectCleared(WebFrame* webframe);
219 virtual void DocumentElementAvailable(WebFrame* webframe); 222 virtual void DocumentElementAvailable(WebFrame* webframe);
220 223
221 virtual WindowOpenDisposition DispositionForNavigationAction( 224 virtual WindowOpenDisposition DispositionForNavigationAction(
222 WebView* webview, 225 WebView* webview,
223 WebFrame* frame, 226 WebFrame* frame,
224 const WebRequest* request, 227 const WebRequest* request,
225 WebNavigationType type, 228 WebNavigationType type,
226 WindowOpenDisposition disposition, 229 WindowOpenDisposition disposition,
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698