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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
590 void willInsertBody(blink::WebLocalFrame* frame) override; | 590 void willInsertBody(blink::WebLocalFrame* frame) override; |
591 void reportFindInPageMatchCount(int request_id, | 591 void reportFindInPageMatchCount(int request_id, |
592 int count, | 592 int count, |
593 bool final_update) override; | 593 bool final_update) override; |
594 void reportFindInPageSelection(int request_id, | 594 void reportFindInPageSelection(int request_id, |
595 int active_match_ordinal, | 595 int active_match_ordinal, |
596 const blink::WebRect& sel) override; | 596 const blink::WebRect& sel) override; |
597 void requestStorageQuota(blink::WebStorageQuotaType type, | 597 void requestStorageQuota(blink::WebStorageQuotaType type, |
598 unsigned long long requested_size, | 598 unsigned long long requested_size, |
599 blink::WebStorageQuotaCallbacks callbacks) override; | 599 blink::WebStorageQuotaCallbacks callbacks) override; |
600 void willOpenWebSocket(blink::WebSocketHandle* handle) override; | |
601 blink::WebPushClient* pushClient() override; | 600 blink::WebPushClient* pushClient() override; |
602 blink::WebPresentationClient* presentationClient() override; | 601 blink::WebPresentationClient* presentationClient() override; |
| 602 void willOpenWebSocket(blink::WebSocketHandle* handle) override; |
603 void willStartUsingPeerConnectionHandler( | 603 void willStartUsingPeerConnectionHandler( |
604 blink::WebRTCPeerConnectionHandler* handler) override; | 604 blink::WebRTCPeerConnectionHandler* handler) override; |
605 blink::WebUserMediaClient* userMediaClient() override; | 605 blink::WebUserMediaClient* userMediaClient() override; |
606 blink::WebEncryptedMediaClient* encryptedMediaClient() override; | 606 blink::WebEncryptedMediaClient* encryptedMediaClient() override; |
607 blink::WebString userAgentOverride() override; | 607 blink::WebString userAgentOverride() override; |
608 blink::WebString doNotTrackValue() override; | 608 blink::WebString doNotTrackValue() override; |
609 bool allowWebGL(bool default_value) override; | 609 bool allowWebGL(bool default_value) override; |
610 blink::WebScreenOrientationClient* webScreenOrientationClient() override; | 610 blink::WebScreenOrientationClient* webScreenOrientationClient() override; |
611 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; | 611 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; |
612 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; | 612 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1278 mojom::FrameHostPtr frame_host_; | 1278 mojom::FrameHostPtr frame_host_; |
1279 | 1279 |
1280 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1280 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1281 | 1281 |
1282 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1282 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1283 }; | 1283 }; |
1284 | 1284 |
1285 } // namespace content | 1285 } // namespace content |
1286 | 1286 |
1287 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1287 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |