| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 class WebMediaPlayerClient; | 143 class WebMediaPlayerClient; |
| 144 class WebMouseEvent; | 144 class WebMouseEvent; |
| 145 class WebPeerConnectionHandler; | 145 class WebPeerConnectionHandler; |
| 146 class WebPeerConnectionHandlerClient; | 146 class WebPeerConnectionHandlerClient; |
| 147 class WebSocketStreamHandle; | 147 class WebSocketStreamHandle; |
| 148 class WebSpeechInputController; | 148 class WebSpeechInputController; |
| 149 class WebSpeechInputListener; | 149 class WebSpeechInputListener; |
| 150 class WebSpeechRecognizer; | 150 class WebSpeechRecognizer; |
| 151 class WebStorageNamespace; | 151 class WebStorageNamespace; |
| 152 class WebTouchEvent; | 152 class WebTouchEvent; |
| 153 class WebURLLoader; | |
| 154 class WebURLRequest; | 153 class WebURLRequest; |
| 155 class WebUserMediaClient; | 154 class WebUserMediaClient; |
| 156 struct WebActiveWheelFlingParameters; | 155 struct WebActiveWheelFlingParameters; |
| 157 struct WebFileChooserParams; | 156 struct WebFileChooserParams; |
| 158 struct WebFindOptions; | 157 struct WebFindOptions; |
| 159 struct WebMediaPlayerAction; | 158 struct WebMediaPlayerAction; |
| 160 struct WebPluginAction; | 159 struct WebPluginAction; |
| 161 struct WebPoint; | 160 struct WebPoint; |
| 162 struct WebWindowFeatures; | 161 struct WebWindowFeatures; |
| 163 } | 162 } |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 const WebKit::WebURLError& error); | 589 const WebKit::WebURLError& error); |
| 591 virtual void didLoadResourceFromMemoryCache( | 590 virtual void didLoadResourceFromMemoryCache( |
| 592 WebKit::WebFrame* frame, | 591 WebKit::WebFrame* frame, |
| 593 const WebKit::WebURLRequest& request, | 592 const WebKit::WebURLRequest& request, |
| 594 const WebKit::WebURLResponse&); | 593 const WebKit::WebURLResponse&); |
| 595 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame); | 594 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame); |
| 596 virtual void didRunInsecureContent( | 595 virtual void didRunInsecureContent( |
| 597 WebKit::WebFrame* frame, | 596 WebKit::WebFrame* frame, |
| 598 const WebKit::WebSecurityOrigin& origin, | 597 const WebKit::WebSecurityOrigin& origin, |
| 599 const WebKit::WebURL& target); | 598 const WebKit::WebURL& target); |
| 600 virtual void didAdoptURLLoader(WebKit::WebURLLoader* loader); | |
| 601 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); | 599 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); |
| 602 virtual void didCreateScriptContext(WebKit::WebFrame* frame, | 600 virtual void didCreateScriptContext(WebKit::WebFrame* frame, |
| 603 v8::Handle<v8::Context>, | 601 v8::Handle<v8::Context>, |
| 604 int extension_group, | 602 int extension_group, |
| 605 int world_id); | 603 int world_id); |
| 606 // TODO(koz): Remove once WebKit no longer calls this. | 604 // TODO(koz): Remove once WebKit no longer calls this. |
| 607 virtual void didCreateScriptContext(WebKit::WebFrame* frame, | 605 virtual void didCreateScriptContext(WebKit::WebFrame* frame, |
| 608 v8::Handle<v8::Context>, | 606 v8::Handle<v8::Context>, |
| 609 int world_id); | 607 int world_id); |
| 610 virtual void willReleaseScriptContext(WebKit::WebFrame* frame, | 608 virtual void willReleaseScriptContext(WebKit::WebFrame* frame, |
| (...skipping 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1430 // bunch of stuff, you should probably create a helper class and put your | 1428 // bunch of stuff, you should probably create a helper class and put your |
| 1431 // data and methods on that to avoid bloating RenderView more. You can | 1429 // data and methods on that to avoid bloating RenderView more. You can |
| 1432 // use the Observer interface to filter IPC messages and receive frame change | 1430 // use the Observer interface to filter IPC messages and receive frame change |
| 1433 // notifications. | 1431 // notifications. |
| 1434 // --------------------------------------------------------------------------- | 1432 // --------------------------------------------------------------------------- |
| 1435 | 1433 |
| 1436 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1434 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1437 }; | 1435 }; |
| 1438 | 1436 |
| 1439 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1437 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |