| 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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 bool final_update); | 361 bool final_update); |
| 362 virtual void reportFindInPageSelection(int request_id, | 362 virtual void reportFindInPageSelection(int request_id, |
| 363 int active_match_ordinal, | 363 int active_match_ordinal, |
| 364 const blink::WebRect& sel); | 364 const blink::WebRect& sel); |
| 365 virtual void requestStorageQuota(blink::WebLocalFrame* frame, | 365 virtual void requestStorageQuota(blink::WebLocalFrame* frame, |
| 366 blink::WebStorageQuotaType type, | 366 blink::WebStorageQuotaType type, |
| 367 unsigned long long requested_size, | 367 unsigned long long requested_size, |
| 368 blink::WebStorageQuotaCallbacks callbacks); | 368 blink::WebStorageQuotaCallbacks callbacks); |
| 369 virtual void willOpenSocketStream( | 369 virtual void willOpenSocketStream( |
| 370 blink::WebSocketStreamHandle* handle); | 370 blink::WebSocketStreamHandle* handle); |
| 371 virtual void willOpenWebSocket(blink::WebSocketHandle* handle); |
| 371 virtual blink::WebGeolocationClient* geolocationClient(); | 372 virtual blink::WebGeolocationClient* geolocationClient(); |
| 372 virtual void willStartUsingPeerConnectionHandler( | 373 virtual void willStartUsingPeerConnectionHandler( |
| 373 blink::WebLocalFrame* frame, | 374 blink::WebLocalFrame* frame, |
| 374 blink::WebRTCPeerConnectionHandler* handler); | 375 blink::WebRTCPeerConnectionHandler* handler); |
| 375 virtual blink::WebUserMediaClient* userMediaClient(); | 376 virtual blink::WebUserMediaClient* userMediaClient(); |
| 376 virtual blink::WebMIDIClient* webMIDIClient(); | 377 virtual blink::WebMIDIClient* webMIDIClient(); |
| 377 virtual bool willCheckAndDispatchMessageEvent( | 378 virtual bool willCheckAndDispatchMessageEvent( |
| 378 blink::WebLocalFrame* source_frame, | 379 blink::WebLocalFrame* source_frame, |
| 379 blink::WebFrame* target_frame, | 380 blink::WebFrame* target_frame, |
| 380 blink::WebSecurityOrigin target_origin, | 381 blink::WebSecurityOrigin target_origin, |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 #endif | 617 #endif |
| 617 | 618 |
| 618 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 619 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 619 | 620 |
| 620 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 621 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 621 }; | 622 }; |
| 622 | 623 |
| 623 } // namespace content | 624 } // namespace content |
| 624 | 625 |
| 625 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 626 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |