| 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 12 matching lines...) Expand all Loading... |
| 23 #include "third_party/WebKit/public/web/WebFrameClient.h" | 23 #include "third_party/WebKit/public/web/WebFrameClient.h" |
| 24 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" | 24 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" |
| 25 #include "ui/gfx/range/range.h" | 25 #include "ui/gfx/range/range.h" |
| 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 WebGeolocationClient; |
| 33 class WebInputEvent; | 34 class WebInputEvent; |
| 34 class WebMouseEvent; | 35 class WebMouseEvent; |
| 35 class WebContentDecryptionModule; | 36 class WebContentDecryptionModule; |
| 36 class WebNotificationPresenter; | 37 class WebNotificationPresenter; |
| 37 class WebSecurityOrigin; | 38 class WebSecurityOrigin; |
| 38 struct WebCompositionUnderline; | 39 struct WebCompositionUnderline; |
| 39 struct WebContextMenuData; | 40 struct WebContextMenuData; |
| 40 struct WebCursorInfo; | 41 struct WebCursorInfo; |
| 41 } | 42 } |
| 42 | 43 |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 bool final_update); | 333 bool final_update); |
| 333 virtual void reportFindInPageSelection(int request_id, | 334 virtual void reportFindInPageSelection(int request_id, |
| 334 int active_match_ordinal, | 335 int active_match_ordinal, |
| 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); |
| 343 virtual blink::WebGeolocationClient* geolocationClient(); |
| 342 virtual void willStartUsingPeerConnectionHandler( | 344 virtual void willStartUsingPeerConnectionHandler( |
| 343 blink::WebLocalFrame* frame, | 345 blink::WebLocalFrame* frame, |
| 344 blink::WebRTCPeerConnectionHandler* handler); | 346 blink::WebRTCPeerConnectionHandler* handler); |
| 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); |
| (...skipping 168 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 |