| 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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 blink::WebPresentationClient* presentationClient() override; | 642 blink::WebPresentationClient* presentationClient() override; |
| 643 blink::WebRelatedAppsFetcher* relatedAppsFetcher() override; | 643 blink::WebRelatedAppsFetcher* relatedAppsFetcher() override; |
| 644 void willStartUsingPeerConnectionHandler( | 644 void willStartUsingPeerConnectionHandler( |
| 645 blink::WebRTCPeerConnectionHandler* handler) override; | 645 blink::WebRTCPeerConnectionHandler* handler) override; |
| 646 blink::WebUserMediaClient* userMediaClient() override; | 646 blink::WebUserMediaClient* userMediaClient() override; |
| 647 blink::WebEncryptedMediaClient* encryptedMediaClient() override; | 647 blink::WebEncryptedMediaClient* encryptedMediaClient() override; |
| 648 blink::WebString userAgentOverride() override; | 648 blink::WebString userAgentOverride() override; |
| 649 blink::WebString doNotTrackValue() override; | 649 blink::WebString doNotTrackValue() override; |
| 650 bool allowWebGL(bool default_value) override; | 650 bool allowWebGL(bool default_value) override; |
| 651 blink::WebScreenOrientationClient* webScreenOrientationClient() override; | 651 blink::WebScreenOrientationClient* webScreenOrientationClient() override; |
| 652 bool isControlledByServiceWorker(blink::WebDataSource& data_source) override; | |
| 653 int64_t serviceWorkerID(blink::WebDataSource& data_source) override; | |
| 654 void postAccessibilityEvent(const blink::WebAXObject& obj, | 652 void postAccessibilityEvent(const blink::WebAXObject& obj, |
| 655 blink::WebAXEvent event) override; | 653 blink::WebAXEvent event) override; |
| 656 void handleAccessibilityFindInPageResult( | 654 void handleAccessibilityFindInPageResult( |
| 657 int identifier, | 655 int identifier, |
| 658 int match_index, | 656 int match_index, |
| 659 const blink::WebAXObject& start_object, | 657 const blink::WebAXObject& start_object, |
| 660 int start_offset, | 658 int start_offset, |
| 661 const blink::WebAXObject& end_object, | 659 const blink::WebAXObject& end_object, |
| 662 int end_offset) override; | 660 int end_offset) override; |
| 663 void didChangeManifest() override; | 661 void didChangeManifest() override; |
| (...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1397 int enabled_bindings_ = 0; | 1395 int enabled_bindings_ = 0; |
| 1398 | 1396 |
| 1399 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1397 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1400 | 1398 |
| 1401 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1399 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1402 }; | 1400 }; |
| 1403 | 1401 |
| 1404 } // namespace content | 1402 } // namespace content |
| 1405 | 1403 |
| 1406 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1404 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |