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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 1938753002: OOPIF: Replicate allowFullscreen flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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 | « no previous file | content/browser/frame_host/render_frame_host_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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 void OnDidChangeOpener(int32_t opener_routing_id); 650 void OnDidChangeOpener(int32_t opener_routing_id);
651 void OnDidChangeName(const std::string& name, const std::string& unique_name); 651 void OnDidChangeName(const std::string& name, const std::string& unique_name);
652 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header); 652 void OnDidAddContentSecurityPolicy(const ContentSecurityPolicyHeader& header);
653 void OnEnforceStrictMixedContentChecking(); 653 void OnEnforceStrictMixedContentChecking();
654 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); 654 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin);
655 void OnDidAssignPageId(int32_t page_id); 655 void OnDidAssignPageId(int32_t page_id);
656 void OnDidChangeSandboxFlags(int32_t frame_routing_id, 656 void OnDidChangeSandboxFlags(int32_t frame_routing_id,
657 blink::WebSandboxFlags flags); 657 blink::WebSandboxFlags flags);
658 void OnDidChangeFrameOwnerProperties( 658 void OnDidChangeFrameOwnerProperties(
659 int32_t frame_routing_id, 659 int32_t frame_routing_id,
660 const blink::WebFrameOwnerProperties& frame_owner_properties); 660 const blink::WebFrameOwnerProperties& properties);
661 void OnUpdateTitle(const base::string16& title, 661 void OnUpdateTitle(const base::string16& title,
662 blink::WebTextDirection title_direction); 662 blink::WebTextDirection title_direction);
663 void OnUpdateEncoding(const std::string& encoding); 663 void OnUpdateEncoding(const std::string& encoding);
664 void OnBeginNavigation(const CommonNavigationParams& common_params, 664 void OnBeginNavigation(const CommonNavigationParams& common_params,
665 const BeginNavigationParams& begin_params, 665 const BeginNavigationParams& begin_params,
666 scoped_refptr<ResourceRequestBody> body); 666 scoped_refptr<ResourceRequestBody> body);
667 void OnDispatchLoad(); 667 void OnDispatchLoad();
668 void OnAccessibilityEvents( 668 void OnAccessibilityEvents(
669 const std::vector<AccessibilityHostMsg_EventParams>& params, 669 const std::vector<AccessibilityHostMsg_EventParams>& params,
670 int reset_token); 670 int reset_token);
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 994
995 // NOTE: This must be the last member. 995 // NOTE: This must be the last member.
996 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 996 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
997 997
998 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 998 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
999 }; 999 };
1000 1000
1001 } // namespace content 1001 } // namespace content
1002 1002
1003 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 1003 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698