| 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 17 matching lines...) Expand all Loading... |
| 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 WebNotificationPresenter; | 36 class WebNotificationPresenter; |
| 37 class WebSecurityOrigin; | 37 class WebSecurityOrigin; |
| 38 class WebUserMediaClient; |
| 38 struct WebCompositionUnderline; | 39 struct WebCompositionUnderline; |
| 39 struct WebContextMenuData; | 40 struct WebContextMenuData; |
| 40 struct WebCursorInfo; | 41 struct WebCursorInfo; |
| 41 } | 42 } |
| 42 | 43 |
| 43 namespace gfx { | 44 namespace gfx { |
| 44 class Point; | 45 class Point; |
| 45 class Range; | 46 class Range; |
| 46 class Rect; | 47 class Rect; |
| 47 } | 48 } |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 const blink::WebRect& sel); | 336 const blink::WebRect& sel); |
| 336 virtual void requestStorageQuota(blink::WebLocalFrame* frame, | 337 virtual void requestStorageQuota(blink::WebLocalFrame* frame, |
| 337 blink::WebStorageQuotaType type, | 338 blink::WebStorageQuotaType type, |
| 338 unsigned long long requested_size, | 339 unsigned long long requested_size, |
| 339 blink::WebStorageQuotaCallbacks callbacks); | 340 blink::WebStorageQuotaCallbacks callbacks); |
| 340 virtual void willOpenSocketStream( | 341 virtual void willOpenSocketStream( |
| 341 blink::WebSocketStreamHandle* handle); | 342 blink::WebSocketStreamHandle* handle); |
| 342 virtual void willStartUsingPeerConnectionHandler( | 343 virtual void willStartUsingPeerConnectionHandler( |
| 343 blink::WebLocalFrame* frame, | 344 blink::WebLocalFrame* frame, |
| 344 blink::WebRTCPeerConnectionHandler* handler); | 345 blink::WebRTCPeerConnectionHandler* handler); |
| 346 virtual blink::WebUserMediaClient* userMediaClient(); |
| 345 virtual bool willCheckAndDispatchMessageEvent( | 347 virtual bool willCheckAndDispatchMessageEvent( |
| 346 blink::WebLocalFrame* sourceFrame, | 348 blink::WebLocalFrame* sourceFrame, |
| 347 blink::WebFrame* targetFrame, | 349 blink::WebFrame* targetFrame, |
| 348 blink::WebSecurityOrigin targetOrigin, | 350 blink::WebSecurityOrigin targetOrigin, |
| 349 blink::WebDOMMessageEvent event); | 351 blink::WebDOMMessageEvent event); |
| 350 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, | 352 virtual blink::WebString userAgentOverride(blink::WebLocalFrame* frame, |
| 351 const blink::WebURL& url); | 353 const blink::WebURL& url); |
| 352 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); | 354 virtual blink::WebString doNotTrackValue(blink::WebLocalFrame* frame); |
| 353 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); | 355 virtual bool allowWebGL(blink::WebLocalFrame* frame, bool default_value); |
| 354 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, | 356 virtual void didLoseWebGLContext(blink::WebLocalFrame* frame, |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 | 522 |
| 521 // Holds a reference to the service which provides desktop notifications. | 523 // Holds a reference to the service which provides desktop notifications. |
| 522 NotificationProvider* notification_provider_; | 524 NotificationProvider* notification_provider_; |
| 523 | 525 |
| 524 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 526 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 525 }; | 527 }; |
| 526 | 528 |
| 527 } // namespace content | 529 } // namespace content |
| 528 | 530 |
| 529 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 531 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |