| 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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 void HandleAccessibilityFindInPageResult( | 658 void HandleAccessibilityFindInPageResult( |
| 659 int identifier, | 659 int identifier, |
| 660 int match_index, | 660 int match_index, |
| 661 const blink::WebAXObject& start_object, | 661 const blink::WebAXObject& start_object, |
| 662 int start_offset, | 662 int start_offset, |
| 663 const blink::WebAXObject& end_object, | 663 const blink::WebAXObject& end_object, |
| 664 int end_offset) override; | 664 int end_offset) override; |
| 665 void DidChangeManifest() override; | 665 void DidChangeManifest() override; |
| 666 void EnterFullscreen() override; | 666 void EnterFullscreen() override; |
| 667 void ExitFullscreen() override; | 667 void ExitFullscreen() override; |
| 668 void SuddenTerminationDisablerChanged( | |
| 669 bool present, | |
| 670 blink::WebFrameClient::SuddenTerminationDisablerType type) override; | |
| 671 void RegisterProtocolHandler(const blink::WebString& scheme, | 668 void RegisterProtocolHandler(const blink::WebString& scheme, |
| 672 const blink::WebURL& url, | 669 const blink::WebURL& url, |
| 673 const blink::WebString& title) override; | 670 const blink::WebString& title) override; |
| 674 void UnregisterProtocolHandler(const blink::WebString& scheme, | 671 void UnregisterProtocolHandler(const blink::WebString& scheme, |
| 675 const blink::WebURL& url) override; | 672 const blink::WebURL& url) override; |
| 676 void CheckIfAudioSinkExistsAndIsAuthorized( | 673 void CheckIfAudioSinkExistsAndIsAuthorized( |
| 677 const blink::WebString& sink_id, | 674 const blink::WebString& sink_id, |
| 678 const blink::WebSecurityOrigin& security_origin, | 675 const blink::WebSecurityOrigin& security_origin, |
| 679 blink::WebSetSinkIdCallbacks* web_callbacks) override; | 676 blink::WebSetSinkIdCallbacks* web_callbacks) override; |
| 680 blink::WebPageVisibilityState VisibilityState() const override; | 677 blink::WebPageVisibilityState VisibilityState() const override; |
| (...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1429 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1426 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
| 1430 | 1427 |
| 1431 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1428 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1432 | 1429 |
| 1433 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1430 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1434 }; | 1431 }; |
| 1435 | 1432 |
| 1436 } // namespace content | 1433 } // namespace content |
| 1437 | 1434 |
| 1438 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1435 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |