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

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

Issue 1957783002: Replicate Content-Security-Policy into remote frame proxies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed most CR feedback from mkwst@, alexmos@ and dcheng@. 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
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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 const blink::WebURL& url, 612 const blink::WebURL& url,
613 const blink::WebString& title) override; 613 const blink::WebString& title) override;
614 void unregisterProtocolHandler(const blink::WebString& scheme, 614 void unregisterProtocolHandler(const blink::WebString& scheme,
615 const blink::WebURL& url) override; 615 const blink::WebURL& url) override;
616 blink::WebBluetooth* bluetooth() override; 616 blink::WebBluetooth* bluetooth() override;
617 void checkIfAudioSinkExistsAndIsAuthorized( 617 void checkIfAudioSinkExistsAndIsAuthorized(
618 const blink::WebString& sink_id, 618 const blink::WebString& sink_id,
619 const blink::WebSecurityOrigin& security_origin, 619 const blink::WebSecurityOrigin& security_origin,
620 blink::WebSetSinkIdCallbacks* web_callbacks) override; 620 blink::WebSetSinkIdCallbacks* web_callbacks) override;
621 blink::ServiceRegistry* serviceRegistry() override; 621 blink::ServiceRegistry* serviceRegistry() override;
622 void didAddContentSecurityPolicy(
623 const blink::WebString& header_value,
624 blink::WebContentSecurityPolicyType type,
625 blink::WebContentSecurityPolicySource source) override;
622 626
623 #if defined(ENABLE_WEBVR) 627 #if defined(ENABLE_WEBVR)
624 blink::WebVRClient* webVRClient() override; 628 blink::WebVRClient* webVRClient() override;
625 #endif 629 #endif
626 630
627 // WebFrameSerializerClient implementation: 631 // WebFrameSerializerClient implementation:
628 void didSerializeDataForFrame( 632 void didSerializeDataForFrame(
629 const blink::WebCString& data, 633 const blink::WebCString& data,
630 blink::WebFrameSerializerClient::FrameSerializationStatus status) 634 blink::WebFrameSerializerClient::FrameSerializationStatus status)
631 override; 635 override;
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
1215 FrameBlameContext* blame_context_; // Not owned. 1219 FrameBlameContext* blame_context_; // Not owned.
1216 1220
1217 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1221 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1218 1222
1219 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1223 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1220 }; 1224 };
1221 1225
1222 } // namespace content 1226 } // namespace content
1223 1227
1224 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1228 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698