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

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

Issue 1710283003: OOPIF: Handle cross-site frames being blocked by X-Frame-Options or CSP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split off the relaxed DCHECK in OnCrossSiteResponse into separate CL Created 4 years, 9 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
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 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 void OnDidAccessInitialDocument(); 627 void OnDidAccessInitialDocument();
628 void OnDidChangeOpener(int32_t opener_routing_id); 628 void OnDidChangeOpener(int32_t opener_routing_id);
629 void OnDidChangeName(const std::string& name, const std::string& unique_name); 629 void OnDidChangeName(const std::string& name, const std::string& unique_name);
630 void OnEnforceStrictMixedContentChecking(); 630 void OnEnforceStrictMixedContentChecking();
631 void OnDidAssignPageId(int32_t page_id); 631 void OnDidAssignPageId(int32_t page_id);
632 void OnDidChangeSandboxFlags(int32_t frame_routing_id, 632 void OnDidChangeSandboxFlags(int32_t frame_routing_id,
633 blink::WebSandboxFlags flags); 633 blink::WebSandboxFlags flags);
634 void OnDidChangeFrameOwnerProperties( 634 void OnDidChangeFrameOwnerProperties(
635 int32_t frame_routing_id, 635 int32_t frame_routing_id,
636 const blink::WebFrameOwnerProperties& frame_owner_properties); 636 const blink::WebFrameOwnerProperties& frame_owner_properties);
637 void OnBlockedLoad();
637 void OnUpdateTitle(const base::string16& title, 638 void OnUpdateTitle(const base::string16& title,
638 blink::WebTextDirection title_direction); 639 blink::WebTextDirection title_direction);
639 void OnUpdateEncoding(const std::string& encoding); 640 void OnUpdateEncoding(const std::string& encoding);
640 void OnBeginNavigation(const CommonNavigationParams& common_params, 641 void OnBeginNavigation(const CommonNavigationParams& common_params,
641 const BeginNavigationParams& begin_params, 642 const BeginNavigationParams& begin_params,
642 scoped_refptr<ResourceRequestBody> body); 643 scoped_refptr<ResourceRequestBody> body);
643 void OnDispatchLoad(); 644 void OnDispatchLoad();
644 void OnAccessibilityEvents( 645 void OnAccessibilityEvents(
645 const std::vector<AccessibilityHostMsg_EventParams>& params, 646 const std::vector<AccessibilityHostMsg_EventParams>& params,
646 int reset_token); 647 int reset_token);
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 932
932 // NOTE: This must be the last member. 933 // NOTE: This must be the last member.
933 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 934 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
934 935
935 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 936 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
936 }; 937 };
937 938
938 } // namespace content 939 } // namespace content
939 940
940 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 941 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigator_impl.cc ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698