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

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

Issue 7647003: Update routing id of pending resource requests for reparented iframes. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed Copyright that presubmit complains about. Created 9 years, 4 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 | « content/common/resource_messages.h ('k') | content/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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CONTENT_RENDERER_RENDER_VIEW_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 class WebImage; 131 class WebImage;
132 class WebInputElement; 132 class WebInputElement;
133 class WebKeyboardEvent; 133 class WebKeyboardEvent;
134 class WebMediaPlayer; 134 class WebMediaPlayer;
135 class WebMediaPlayerClient; 135 class WebMediaPlayerClient;
136 class WebMouseEvent; 136 class WebMouseEvent;
137 class WebPlugin; 137 class WebPlugin;
138 class WebSpeechInputController; 138 class WebSpeechInputController;
139 class WebSpeechInputListener; 139 class WebSpeechInputListener;
140 class WebStorageNamespace; 140 class WebStorageNamespace;
141 class WebURLLoader;
141 class WebURLRequest; 142 class WebURLRequest;
142 class WebView; 143 class WebView;
143 struct WebContextMenuData; 144 struct WebContextMenuData;
144 struct WebFileChooserParams; 145 struct WebFileChooserParams;
145 struct WebFindOptions; 146 struct WebFindOptions;
146 struct WebMediaPlayerAction; 147 struct WebMediaPlayerAction;
147 struct WebPluginParams; 148 struct WebPluginParams;
148 struct WebPoint; 149 struct WebPoint;
149 struct WebWindowFeatures; 150 struct WebWindowFeatures;
150 } 151 }
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 const WebKit::WebURLError& error); 541 const WebKit::WebURLError& error);
541 virtual void didLoadResourceFromMemoryCache( 542 virtual void didLoadResourceFromMemoryCache(
542 WebKit::WebFrame* frame, 543 WebKit::WebFrame* frame,
543 const WebKit::WebURLRequest& request, 544 const WebKit::WebURLRequest& request,
544 const WebKit::WebURLResponse&); 545 const WebKit::WebURLResponse&);
545 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame); 546 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame);
546 virtual void didRunInsecureContent( 547 virtual void didRunInsecureContent(
547 WebKit::WebFrame* frame, 548 WebKit::WebFrame* frame,
548 const WebKit::WebSecurityOrigin& origin, 549 const WebKit::WebSecurityOrigin& origin,
549 const WebKit::WebURL& target); 550 const WebKit::WebURL& target);
551 virtual void didAdoptURLLoader(WebKit::WebURLLoader* loader);
550 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); 552 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame);
551 virtual void didCreateScriptContext(WebKit::WebFrame* frame); 553 virtual void didCreateScriptContext(WebKit::WebFrame* frame);
552 virtual void didDestroyScriptContext(WebKit::WebFrame* frame); 554 virtual void didDestroyScriptContext(WebKit::WebFrame* frame);
553 virtual void didCreateIsolatedScriptContext(WebKit::WebFrame* frame); 555 virtual void didCreateIsolatedScriptContext(WebKit::WebFrame* frame);
554 virtual void didUpdateLayout(WebKit::WebFrame* frame); 556 virtual void didUpdateLayout(WebKit::WebFrame* frame);
555 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); 557 virtual void didChangeScrollOffset(WebKit::WebFrame* frame);
556 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); 558 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers);
557 virtual void didChangeContentsSize(WebKit::WebFrame* frame, 559 virtual void didChangeContentsSize(WebKit::WebFrame* frame,
558 const WebKit::WebSize& size); 560 const WebKit::WebSize& size);
559 virtual void reportFindInPageMatchCount(int request_id, 561 virtual void reportFindInPageMatchCount(int request_id,
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 // bunch of stuff, you should probably create a helper class and put your 1223 // bunch of stuff, you should probably create a helper class and put your
1222 // data and methods on that to avoid bloating RenderView more. You can use 1224 // data and methods on that to avoid bloating RenderView more. You can use
1223 // the Observer interface to filter IPC messages and receive frame change 1225 // the Observer interface to filter IPC messages and receive frame change
1224 // notifications. 1226 // notifications.
1225 // --------------------------------------------------------------------------- 1227 // ---------------------------------------------------------------------------
1226 1228
1227 DISALLOW_COPY_AND_ASSIGN(RenderView); 1229 DISALLOW_COPY_AND_ASSIGN(RenderView);
1228 }; 1230 };
1229 1231
1230 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ 1232 #endif // CONTENT_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | content/renderer/render_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698