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

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

Issue 2046733003: Replicate WebInsecureRequestPolicy instead of a bool for strict mixed content checks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@securitycontext
Patch Set: alexmos@ Created 4 years, 6 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_replication_state.cc ('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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 const blink::WebString& name, 448 const blink::WebString& name,
449 const blink::WebString& unique_name, 449 const blink::WebString& unique_name,
450 blink::WebSandboxFlags sandbox_flags, 450 blink::WebSandboxFlags sandbox_flags,
451 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 451 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
452 void didChangeOpener(blink::WebFrame* frame) override; 452 void didChangeOpener(blink::WebFrame* frame) override;
453 void frameDetached(blink::WebFrame* frame, DetachType type) override; 453 void frameDetached(blink::WebFrame* frame, DetachType type) override;
454 void frameFocused() override; 454 void frameFocused() override;
455 void willClose(blink::WebFrame* frame) override; 455 void willClose(blink::WebFrame* frame) override;
456 void didChangeName(const blink::WebString& name, 456 void didChangeName(const blink::WebString& name,
457 const blink::WebString& unique_name) override; 457 const blink::WebString& unique_name) override;
458 void didEnforceStrictMixedContentChecking() override; 458 void didEnforceInsecureRequestPolicy(
459 blink::WebInsecureRequestPolicy policy) override;
459 void didUpdateToUniqueOrigin( 460 void didUpdateToUniqueOrigin(
460 bool is_potentially_trustworthy_unique_origin) override; 461 bool is_potentially_trustworthy_unique_origin) override;
461 void didChangeSandboxFlags(blink::WebFrame* child_frame, 462 void didChangeSandboxFlags(blink::WebFrame* child_frame,
462 blink::WebSandboxFlags flags) override; 463 blink::WebSandboxFlags flags) override;
463 void didAddContentSecurityPolicy( 464 void didAddContentSecurityPolicy(
464 const blink::WebString& header_value, 465 const blink::WebString& header_value,
465 blink::WebContentSecurityPolicyType type, 466 blink::WebContentSecurityPolicyType type,
466 blink::WebContentSecurityPolicySource source) override; 467 blink::WebContentSecurityPolicySource source) override;
467 void didChangeFrameOwnerProperties( 468 void didChangeFrameOwnerProperties(
468 blink::WebFrame* child_frame, 469 blink::WebFrame* child_frame,
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 #endif 1252 #endif
1252 1253
1253 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1254 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1254 1255
1255 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1256 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1256 }; 1257 };
1257 1258
1258 } // namespace content 1259 } // namespace content
1259 1260
1260 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1261 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/frame_replication_state.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698