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

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

Issue 2520223002: Replicate a parsed feature policy representation so it doesn't need to be parsed in the browser pro… (Closed)
Patch Set: Replicate a parsed feature policy representation so it doesn't need to be parsed in the browser pro… Created 4 years 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "ipc/ipc_platform_file.h" 44 #include "ipc/ipc_platform_file.h"
45 #include "media/blink/webmediaplayer_delegate.h" 45 #include "media/blink/webmediaplayer_delegate.h"
46 #include "media/blink/webmediaplayer_params.h" 46 #include "media/blink/webmediaplayer_params.h"
47 #include "media/mojo/interfaces/remoting.mojom.h" 47 #include "media/mojo/interfaces/remoting.mojom.h"
48 #include "mojo/public/cpp/bindings/associated_binding.h" 48 #include "mojo/public/cpp/bindings/associated_binding.h"
49 #include "mojo/public/cpp/bindings/binding.h" 49 #include "mojo/public/cpp/bindings/binding.h"
50 #include "ppapi/features/features.h" 50 #include "ppapi/features/features.h"
51 #include "services/service_manager/public/interfaces/connector.mojom.h" 51 #include "services/service_manager/public/interfaces/connector.mojom.h"
52 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" 52 #include "services/service_manager/public/interfaces/interface_provider.mojom.h"
53 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" 53 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h"
54 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h"
54 #include "third_party/WebKit/public/platform/WebFocusType.h" 55 #include "third_party/WebKit/public/platform/WebFocusType.h"
55 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" 56 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h"
56 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" 57 #include "third_party/WebKit/public/platform/WebMediaPlayer.h"
57 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" 58 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h"
58 #include "third_party/WebKit/public/web/WebAXObject.h" 59 #include "third_party/WebKit/public/web/WebAXObject.h"
59 #include "third_party/WebKit/public/web/WebDataSource.h" 60 #include "third_party/WebKit/public/web/WebDataSource.h"
60 #include "third_party/WebKit/public/web/WebFrameClient.h" 61 #include "third_party/WebKit/public/web/WebFrameClient.h"
61 #include "third_party/WebKit/public/web/WebFrameLoadType.h" 62 #include "third_party/WebKit/public/web/WebFrameLoadType.h"
62 #include "third_party/WebKit/public/web/WebFrameSerializerClient.h" 63 #include "third_party/WebKit/public/web/WebFrameSerializerClient.h"
63 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" 64 #include "third_party/WebKit/public/web/WebHistoryCommitType.h"
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 void frameFocused() override; 481 void frameFocused() override;
481 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; 482 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override;
482 void didChangeName(const blink::WebString& name, 483 void didChangeName(const blink::WebString& name,
483 const blink::WebString& unique_name) override; 484 const blink::WebString& unique_name) override;
484 void didEnforceInsecureRequestPolicy( 485 void didEnforceInsecureRequestPolicy(
485 blink::WebInsecureRequestPolicy policy) override; 486 blink::WebInsecureRequestPolicy policy) override;
486 void didUpdateToUniqueOrigin( 487 void didUpdateToUniqueOrigin(
487 bool is_potentially_trustworthy_unique_origin) override; 488 bool is_potentially_trustworthy_unique_origin) override;
488 void didChangeSandboxFlags(blink::WebFrame* child_frame, 489 void didChangeSandboxFlags(blink::WebFrame* child_frame,
489 blink::WebSandboxFlags flags) override; 490 blink::WebSandboxFlags flags) override;
490 void didSetFeaturePolicyHeader(const blink::WebString& header_value) override; 491 void didSetFeaturePolicyHeader(
492 const blink::WebParsedFeaturePolicy& parsed_header) override;
491 void didAddContentSecurityPolicy( 493 void didAddContentSecurityPolicy(
492 const blink::WebString& header_value, 494 const blink::WebString& header_value,
493 blink::WebContentSecurityPolicyType type, 495 blink::WebContentSecurityPolicyType type,
494 blink::WebContentSecurityPolicySource source) override; 496 blink::WebContentSecurityPolicySource source) override;
495 void didChangeFrameOwnerProperties( 497 void didChangeFrameOwnerProperties(
496 blink::WebFrame* child_frame, 498 blink::WebFrame* child_frame,
497 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 499 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
498 void didMatchCSS( 500 void didMatchCSS(
499 blink::WebLocalFrame* frame, 501 blink::WebLocalFrame* frame,
500 const blink::WebVector<blink::WebString>& newly_matching_selectors, 502 const blink::WebVector<blink::WebString>& newly_matching_selectors,
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
1342 bool browser_side_navigation_pending_ = false; 1344 bool browser_side_navigation_pending_ = false;
1343 1345
1344 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1346 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1345 1347
1346 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1348 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1347 }; 1349 };
1348 1350
1349 } // namespace content 1351 } // namespace content
1350 1352
1351 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1353 #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