| 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; | |
| 142 class WebURLRequest; | 141 class WebURLRequest; |
| 143 class WebView; | 142 class WebView; |
| 144 struct WebContextMenuData; | 143 struct WebContextMenuData; |
| 145 struct WebFileChooserParams; | 144 struct WebFileChooserParams; |
| 146 struct WebFindOptions; | 145 struct WebFindOptions; |
| 147 struct WebMediaPlayerAction; | 146 struct WebMediaPlayerAction; |
| 148 struct WebPluginParams; | 147 struct WebPluginParams; |
| 149 struct WebPoint; | 148 struct WebPoint; |
| 150 struct WebWindowFeatures; | 149 struct WebWindowFeatures; |
| 151 } | 150 } |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 541 const WebKit::WebURLError& error); | 540 const WebKit::WebURLError& error); |
| 542 virtual void didLoadResourceFromMemoryCache( | 541 virtual void didLoadResourceFromMemoryCache( |
| 543 WebKit::WebFrame* frame, | 542 WebKit::WebFrame* frame, |
| 544 const WebKit::WebURLRequest& request, | 543 const WebKit::WebURLRequest& request, |
| 545 const WebKit::WebURLResponse&); | 544 const WebKit::WebURLResponse&); |
| 546 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame); | 545 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame); |
| 547 virtual void didRunInsecureContent( | 546 virtual void didRunInsecureContent( |
| 548 WebKit::WebFrame* frame, | 547 WebKit::WebFrame* frame, |
| 549 const WebKit::WebSecurityOrigin& origin, | 548 const WebKit::WebSecurityOrigin& origin, |
| 550 const WebKit::WebURL& target); | 549 const WebKit::WebURL& target); |
| 551 virtual void didAdoptURLLoader(WebKit::WebURLLoader* loader); | |
| 552 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); | 550 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); |
| 553 virtual void didCreateScriptContext(WebKit::WebFrame* frame); | 551 virtual void didCreateScriptContext(WebKit::WebFrame* frame); |
| 554 virtual void didDestroyScriptContext(WebKit::WebFrame* frame); | 552 virtual void didDestroyScriptContext(WebKit::WebFrame* frame); |
| 555 virtual void didCreateIsolatedScriptContext(WebKit::WebFrame* frame); | 553 virtual void didCreateIsolatedScriptContext(WebKit::WebFrame* frame); |
| 556 virtual void didUpdateLayout(WebKit::WebFrame* frame); | 554 virtual void didUpdateLayout(WebKit::WebFrame* frame); |
| 557 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); | 555 virtual void didChangeScrollOffset(WebKit::WebFrame* frame); |
| 558 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); | 556 virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers); |
| 559 virtual void didChangeContentsSize(WebKit::WebFrame* frame, | 557 virtual void didChangeContentsSize(WebKit::WebFrame* frame, |
| 560 const WebKit::WebSize& size); | 558 const WebKit::WebSize& size); |
| 561 virtual void reportFindInPageMatchCount(int request_id, | 559 virtual void reportFindInPageMatchCount(int request_id, |
| (...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1223 // bunch of stuff, you should probably create a helper class and put your | 1221 // bunch of stuff, you should probably create a helper class and put your |
| 1224 // data and methods on that to avoid bloating RenderView more. You can use | 1222 // data and methods on that to avoid bloating RenderView more. You can use |
| 1225 // the Observer interface to filter IPC messages and receive frame change | 1223 // the Observer interface to filter IPC messages and receive frame change |
| 1226 // notifications. | 1224 // notifications. |
| 1227 // --------------------------------------------------------------------------- | 1225 // --------------------------------------------------------------------------- |
| 1228 | 1226 |
| 1229 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1227 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1230 }; | 1228 }; |
| 1231 | 1229 |
| 1232 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1230 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |