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

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
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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 void frameFocused() override; 483 void frameFocused() override;
483 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override; 484 void willCommitProvisionalLoad(blink::WebLocalFrame* frame) override;
484 void didChangeName(const blink::WebString& name, 485 void didChangeName(const blink::WebString& name,
485 const blink::WebString& unique_name) override; 486 const blink::WebString& unique_name) override;
486 void didEnforceInsecureRequestPolicy( 487 void didEnforceInsecureRequestPolicy(
487 blink::WebInsecureRequestPolicy policy) override; 488 blink::WebInsecureRequestPolicy policy) override;
488 void didUpdateToUniqueOrigin( 489 void didUpdateToUniqueOrigin(
489 bool is_potentially_trustworthy_unique_origin) override; 490 bool is_potentially_trustworthy_unique_origin) override;
490 void didChangeSandboxFlags(blink::WebFrame* child_frame, 491 void didChangeSandboxFlags(blink::WebFrame* child_frame,
491 blink::WebSandboxFlags flags) override; 492 blink::WebSandboxFlags flags) override;
492 void didSetFeaturePolicyHeader(const blink::WebString& header_value) override; 493 void didSetFeaturePolicyHeader(
494 const blink::WebParsedFeaturePolicy& parsed_header) override;
493 void didAddContentSecurityPolicy( 495 void didAddContentSecurityPolicy(
494 const blink::WebString& header_value, 496 const blink::WebString& header_value,
495 blink::WebContentSecurityPolicyType type, 497 blink::WebContentSecurityPolicyType type,
496 blink::WebContentSecurityPolicySource source) override; 498 blink::WebContentSecurityPolicySource source) override;
497 void didChangeFrameOwnerProperties( 499 void didChangeFrameOwnerProperties(
498 blink::WebFrame* child_frame, 500 blink::WebFrame* child_frame,
499 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 501 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
500 void didMatchCSS( 502 void didMatchCSS(
501 blink::WebLocalFrame* frame, 503 blink::WebLocalFrame* frame,
502 const blink::WebVector<blink::WebString>& newly_matching_selectors, 504 const blink::WebVector<blink::WebString>& newly_matching_selectors,
(...skipping 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
1344 bool browser_side_navigation_pending_ = false; 1346 bool browser_side_navigation_pending_ = false;
1345 1347
1346 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1348 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1347 1349
1348 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1350 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1349 }; 1351 };
1350 1352
1351 } // namespace content 1353 } // namespace content
1352 1354
1353 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1355 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698