Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2812743002: Revert of Keep track in the browser of which frames have onunload and onbeforeunload handlers. (Closed)
Patch Set: manual merge Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698