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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
484 virtual void reportFindInPageMatchCount(int request_id, | 484 virtual void reportFindInPageMatchCount(int request_id, |
485 int count, | 485 int count, |
486 bool final_update); | 486 bool final_update); |
487 virtual void reportFindInPageSelection(int request_id, | 487 virtual void reportFindInPageSelection(int request_id, |
488 int active_match_ordinal, | 488 int active_match_ordinal, |
489 const blink::WebRect& sel); | 489 const blink::WebRect& sel); |
490 virtual void requestStorageQuota(blink::WebLocalFrame* frame, | 490 virtual void requestStorageQuota(blink::WebLocalFrame* frame, |
491 blink::WebStorageQuotaType type, | 491 blink::WebStorageQuotaType type, |
492 unsigned long long requested_size, | 492 unsigned long long requested_size, |
493 blink::WebStorageQuotaCallbacks callbacks); | 493 blink::WebStorageQuotaCallbacks callbacks); |
| 494 virtual void requestDurability(blink::WebLocalFrame* frame, |
| 495 blink::WebStorageQuotaCallbacks callbacks); |
494 virtual void willOpenWebSocket(blink::WebSocketHandle* handle); | 496 virtual void willOpenWebSocket(blink::WebSocketHandle* handle); |
495 virtual blink::WebGeolocationClient* geolocationClient(); | 497 virtual blink::WebGeolocationClient* geolocationClient(); |
496 virtual blink::WebPushClient* pushClient(); | 498 virtual blink::WebPushClient* pushClient(); |
497 virtual blink::WebPresentationClient* presentationClient(); | 499 virtual blink::WebPresentationClient* presentationClient(); |
498 virtual void willStartUsingPeerConnectionHandler( | 500 virtual void willStartUsingPeerConnectionHandler( |
499 blink::WebLocalFrame* frame, | 501 blink::WebLocalFrame* frame, |
500 blink::WebRTCPeerConnectionHandler* handler); | 502 blink::WebRTCPeerConnectionHandler* handler); |
501 virtual blink::WebUserMediaClient* userMediaClient(); | 503 virtual blink::WebUserMediaClient* userMediaClient(); |
502 virtual blink::WebEncryptedMediaClient* encryptedMediaClient(); | 504 virtual blink::WebEncryptedMediaClient* encryptedMediaClient(); |
503 virtual blink::WebMIDIClient* webMIDIClient(); | 505 virtual blink::WebMIDIClient* webMIDIClient(); |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
975 #endif | 977 #endif |
976 | 978 |
977 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 979 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
978 | 980 |
979 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 981 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
980 }; | 982 }; |
981 | 983 |
982 } // namespace content | 984 } // namespace content |
983 | 985 |
984 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 986 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |