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

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

Issue 2483703002: Replicate feature policy headers to remote frames (Closed)
Patch Set: Get replication actually working; add layout tests Created 4 years, 1 month 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_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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 void frameFocused() override; 480 void frameFocused() override;
481 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; 481 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override;
482 void didChangeName(const blink::WebString& name, 482 void didChangeName(const blink::WebString& name,
483 const blink::WebString& unique_name) override; 483 const blink::WebString& unique_name) override;
484 void didEnforceInsecureRequestPolicy( 484 void didEnforceInsecureRequestPolicy(
485 blink::WebInsecureRequestPolicy policy) override; 485 blink::WebInsecureRequestPolicy policy) override;
486 void didUpdateToUniqueOrigin( 486 void didUpdateToUniqueOrigin(
487 bool is_potentially_trustworthy_unique_origin) override; 487 bool is_potentially_trustworthy_unique_origin) override;
488 void didChangeSandboxFlags(blink::WebFrame* child_frame, 488 void didChangeSandboxFlags(blink::WebFrame* child_frame,
489 blink::WebSandboxFlags flags) override; 489 blink::WebSandboxFlags flags) override;
490 void didSetFeaturePolicyHeader(const blink::WebString& header_value) override;
490 void didAddContentSecurityPolicy( 491 void didAddContentSecurityPolicy(
491 const blink::WebString& header_value, 492 const blink::WebString& header_value,
492 blink::WebContentSecurityPolicyType type, 493 blink::WebContentSecurityPolicyType type,
493 blink::WebContentSecurityPolicySource source) override; 494 blink::WebContentSecurityPolicySource source) override;
494 void didChangeFrameOwnerProperties( 495 void didChangeFrameOwnerProperties(
495 blink::WebFrame* child_frame, 496 blink::WebFrame* child_frame,
496 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 497 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
497 void didMatchCSS( 498 void didMatchCSS(
498 blink::WebLocalFrame* frame, 499 blink::WebLocalFrame* frame,
499 const blink::WebVector<blink::WebString>& newly_matching_selectors, 500 const blink::WebVector<blink::WebString>& newly_matching_selectors,
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
1329 bool browser_side_navigation_pending_ = false; 1330 bool browser_side_navigation_pending_ = false;
1330 1331
1331 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1332 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1332 1333
1333 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1334 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1334 }; 1335 };
1335 1336
1336 } // namespace content 1337 } // namespace content
1337 1338
1338 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1339 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698