OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 class TransportDIB; | 27 class TransportDIB; |
28 struct FrameMsg_BuffersSwapped_Params; | 28 struct FrameMsg_BuffersSwapped_Params; |
29 struct FrameMsg_CompositorFrameSwapped_Params; | 29 struct FrameMsg_CompositorFrameSwapped_Params; |
30 struct FrameMsg_Navigate_Params; | 30 struct FrameMsg_Navigate_Params; |
31 | 31 |
32 namespace blink { | 32 namespace blink { |
33 class WebInputEvent; | 33 class WebInputEvent; |
34 class WebMouseEvent; | 34 class WebMouseEvent; |
35 class WebContentDecryptionModule; | 35 class WebContentDecryptionModule; |
| 36 class WebMIDIClient; |
36 class WebNotificationPresenter; | 37 class WebNotificationPresenter; |
37 class WebSecurityOrigin; | 38 class WebSecurityOrigin; |
38 class WebUserMediaClient; | 39 class WebUserMediaClient; |
39 struct WebCompositionUnderline; | 40 struct WebCompositionUnderline; |
40 struct WebContextMenuData; | 41 struct WebContextMenuData; |
41 struct WebCursorInfo; | 42 struct WebCursorInfo; |
42 } | 43 } |
43 | 44 |
44 namespace gfx { | 45 namespace gfx { |
45 class Point; | 46 class Point; |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
337 virtual void requestStorageQuota(blink::WebLocalFrame* frame, | 338 virtual void requestStorageQuota(blink::WebLocalFrame* frame, |
338 blink::WebStorageQuotaType type, | 339 blink::WebStorageQuotaType type, |
339 unsigned long long requested_size, | 340 unsigned long long requested_size, |
340 blink::WebStorageQuotaCallbacks callbacks); | 341 blink::WebStorageQuotaCallbacks callbacks); |
341 virtual void willOpenSocketStream( | 342 virtual void willOpenSocketStream( |
342 blink::WebSocketStreamHandle* handle); | 343 blink::WebSocketStreamHandle* handle); |
343 virtual void willStartUsingPeerConnectionHandler( | 344 virtual void willStartUsingPeerConnectionHandler( |
344 blink::WebLocalFrame* frame, | 345 blink::WebLocalFrame* frame, |
345 blink::WebRTCPeerConnectionHandler* handler); | 346 blink::WebRTCPeerConnectionHandler* handler); |
346 virtual blink::WebUserMediaClient* userMediaClient(); | 347 virtual blink::WebUserMediaClient* userMediaClient(); |
| 348 virtual blink::WebMIDIClient* webMIDIClient(); |
347 virtual bool willCheckAndDispatchMessageEvent( | 349 virtual bool willCheckAndDispatchMessageEvent( |
348 blink::WebLocalFrame* sourceFrame, | 350 blink::WebLocalFrame* sourceFrame, |
349 blink::WebFrame* targetFrame, | 351 blink::WebFrame* targetFrame, |
350 blink::WebSecurityOrigin targetOrigin, | 352 blink::WebSecurityOrigin targetOrigin, |
351 blink::WebDOMMessageEvent event); | 353 blink::WebDOMMessageEvent event); |
352 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, | 354 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, |
353 const blink::WebURL& url); | 355 const blink::WebURL& url); |
354 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); | 356 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); |
355 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); | 357 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); |
356 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, | 358 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
522 | 524 |
523 // Holds a reference to the service which provides desktop notifications. | 525 // Holds a reference to the service which provides desktop notifications. |
524 NotificationProvider* notification_provider_; | 526 NotificationProvider* notification_provider_; |
525 | 527 |
526 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 528 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
527 }; | 529 }; |
528 | 530 |
529 } // namespace content | 531 } // namespace content |
530 | 532 |
531 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 533 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |