Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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*); | |
|
jam
2011/08/15 16:31:02
nit: chrome style is to list the parameter name
Dmitry Titov
2011/08/15 20:50:10
Done.
| |
| 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 logCrossFramePropertyAccess( | 556 virtual void logCrossFramePropertyAccess( |
| 555 WebKit::WebFrame* frame, | 557 WebKit::WebFrame* frame, |
| 556 WebKit::WebFrame* target, | 558 WebKit::WebFrame* target, |
| 557 bool cross_origin, | 559 bool cross_origin, |
| 558 const WebKit::WebString& property_name, | 560 const WebKit::WebString& property_name, |
| 559 unsigned long long event_id); | 561 unsigned long long event_id); |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1209 // bunch of stuff, you should probably create a helper class and put your | 1211 // bunch of stuff, you should probably create a helper class and put your |
| 1210 // data and methods on that to avoid bloating RenderView more. You can use | 1212 // data and methods on that to avoid bloating RenderView more. You can use |
| 1211 // the Observer interface to filter IPC messages and receive frame change | 1213 // the Observer interface to filter IPC messages and receive frame change |
| 1212 // notifications. | 1214 // notifications. |
| 1213 // --------------------------------------------------------------------------- | 1215 // --------------------------------------------------------------------------- |
| 1214 | 1216 |
| 1215 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1217 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1216 }; | 1218 }; |
| 1217 | 1219 |
| 1218 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1220 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |