| 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 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 void handleAccessibilityFindInPageResult( | 661 void handleAccessibilityFindInPageResult( |
| 662 int identifier, | 662 int identifier, |
| 663 int match_index, | 663 int match_index, |
| 664 const blink::WebAXObject& start_object, | 664 const blink::WebAXObject& start_object, |
| 665 int start_offset, | 665 int start_offset, |
| 666 const blink::WebAXObject& end_object, | 666 const blink::WebAXObject& end_object, |
| 667 int end_offset) override; | 667 int end_offset) override; |
| 668 void didChangeManifest() override; | 668 void didChangeManifest() override; |
| 669 void enterFullscreen() override; | 669 void enterFullscreen() override; |
| 670 void exitFullscreen() override; | 670 void exitFullscreen() override; |
| 671 void suddenTerminationDisablerChanged( | |
| 672 bool present, | |
| 673 blink::WebFrameClient::SuddenTerminationDisablerType type) override; | |
| 674 void registerProtocolHandler(const blink::WebString& scheme, | 671 void registerProtocolHandler(const blink::WebString& scheme, |
| 675 const blink::WebURL& url, | 672 const blink::WebURL& url, |
| 676 const blink::WebString& title) override; | 673 const blink::WebString& title) override; |
| 677 void unregisterProtocolHandler(const blink::WebString& scheme, | 674 void unregisterProtocolHandler(const blink::WebString& scheme, |
| 678 const blink::WebURL& url) override; | 675 const blink::WebURL& url) override; |
| 679 void checkIfAudioSinkExistsAndIsAuthorized( | 676 void checkIfAudioSinkExistsAndIsAuthorized( |
| 680 const blink::WebString& sink_id, | 677 const blink::WebString& sink_id, |
| 681 const blink::WebSecurityOrigin& security_origin, | 678 const blink::WebSecurityOrigin& security_origin, |
| 682 blink::WebSetSinkIdCallbacks* web_callbacks) override; | 679 blink::WebSetSinkIdCallbacks* web_callbacks) override; |
| 683 blink::WebPageVisibilityState visibilityState() const override; | 680 blink::WebPageVisibilityState visibilityState() const override; |
| (...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1426 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1423 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
| 1427 | 1424 |
| 1428 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1425 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1429 | 1426 |
| 1430 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1427 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1431 }; | 1428 }; |
| 1432 | 1429 |
| 1433 } // namespace content | 1430 } // namespace content |
| 1434 | 1431 |
| 1435 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1432 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |