| 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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 virtual void reportFindInPageMatchCount(int request_id, | 430 virtual void reportFindInPageMatchCount(int request_id, |
| 431 int count, | 431 int count, |
| 432 bool final_update); | 432 bool final_update); |
| 433 virtual void reportFindInPageSelection(int request_id, | 433 virtual void reportFindInPageSelection(int request_id, |
| 434 int active_match_ordinal, | 434 int active_match_ordinal, |
| 435 const blink::WebRect& sel); | 435 const blink::WebRect& sel); |
| 436 virtual void requestStorageQuota(blink::WebLocalFrame* frame, | 436 virtual void requestStorageQuota(blink::WebLocalFrame* frame, |
| 437 blink::WebStorageQuotaType type, | 437 blink::WebStorageQuotaType type, |
| 438 unsigned long long requested_size, | 438 unsigned long long requested_size, |
| 439 blink::WebStorageQuotaCallbacks callbacks); | 439 blink::WebStorageQuotaCallbacks callbacks); |
| 440 virtual void willOpenSocketStream( | |
| 441 blink::WebSocketStreamHandle* handle); | |
| 442 virtual void willOpenWebSocket(blink::WebSocketHandle* handle); | 440 virtual void willOpenWebSocket(blink::WebSocketHandle* handle); |
| 443 virtual blink::WebGeolocationClient* geolocationClient(); | 441 virtual blink::WebGeolocationClient* geolocationClient(); |
| 444 virtual blink::WebPushClient* pushClient(); | 442 virtual blink::WebPushClient* pushClient(); |
| 445 virtual void willStartUsingPeerConnectionHandler( | 443 virtual void willStartUsingPeerConnectionHandler( |
| 446 blink::WebLocalFrame* frame, | 444 blink::WebLocalFrame* frame, |
| 447 blink::WebRTCPeerConnectionHandler* handler); | 445 blink::WebRTCPeerConnectionHandler* handler); |
| 448 virtual blink::WebUserMediaClient* userMediaClient(); | 446 virtual blink::WebUserMediaClient* userMediaClient(); |
| 449 virtual blink::WebMIDIClient* webMIDIClient(); | 447 virtual blink::WebMIDIClient* webMIDIClient(); |
| 450 virtual bool willCheckAndDispatchMessageEvent( | 448 virtual bool willCheckAndDispatchMessageEvent( |
| 451 blink::WebLocalFrame* source_frame, | 449 blink::WebLocalFrame* source_frame, |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 782 #endif | 780 #endif |
| 783 | 781 |
| 784 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 782 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 785 | 783 |
| 786 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 784 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 787 }; | 785 }; |
| 788 | 786 |
| 789 } // namespace content | 787 } // namespace content |
| 790 | 788 |
| 791 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 789 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |