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

Side by Side Diff: content/common/frame_owner_properties.h

Issue 2733823004: Remove old permission delegation prototype (Closed)
Patch Set: update webexposed layout tests Created 3 years, 9 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 | « chrome/test/BUILD.gn ('k') | content/common/frame_owner_properties.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_COMMON_FRAME_OWNER_PROPERTIES_H_ 5 #ifndef CONTENT_COMMON_FRAME_OWNER_PROPERTIES_H_
6 #define CONTENT_COMMON_FRAME_OWNER_PROPERTIES_H_ 6 #define CONTENT_COMMON_FRAME_OWNER_PROPERTIES_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h" 11 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h"
12 #include "third_party/WebKit/public/platform/modules/permissions/permission.mojo m.h"
13 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" 12 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
14 13
15 namespace content { 14 namespace content {
16 15
17 // Used for IPC transport of WebFrameOwnerProperties. WebFrameOwnerProperties 16 // Used for IPC transport of WebFrameOwnerProperties. WebFrameOwnerProperties
18 // can't be used directly as it contains a WebVector which doesn't have 17 // can't be used directly as it contains a WebVector which doesn't have
19 // ParamTraits defined. 18 // ParamTraits defined.
20 struct CONTENT_EXPORT FrameOwnerProperties { 19 struct CONTENT_EXPORT FrameOwnerProperties {
21 FrameOwnerProperties(); 20 FrameOwnerProperties();
22 FrameOwnerProperties(const FrameOwnerProperties& other); 21 FrameOwnerProperties(const FrameOwnerProperties& other);
(...skipping 11 matching lines...) Expand all
34 bool allow_fullscreen; 33 bool allow_fullscreen;
35 bool allow_payment_request; 34 bool allow_payment_request;
36 35
37 // An experimental attribute to be used by a parent frame to enforce CSP on a 36 // An experimental attribute to be used by a parent frame to enforce CSP on a
38 // subframe. This is different from replicated CSP headers kept in 37 // subframe. This is different from replicated CSP headers kept in
39 // FrameReplicationState that keep track of CSP headers currently in effect 38 // FrameReplicationState that keep track of CSP headers currently in effect
40 // for a frame. See https://crbug.com/647588 and 39 // for a frame. See https://crbug.com/647588 and
41 // https://www.w3.org/TR/csp-embedded-enforcement/#required-csp 40 // https://www.w3.org/TR/csp-embedded-enforcement/#required-csp
42 std::string required_csp; 41 std::string required_csp;
43 42
44 std::vector<blink::mojom::PermissionName> delegated_permissions;
45 std::vector<blink::WebFeaturePolicyFeature> allowed_features; 43 std::vector<blink::WebFeaturePolicyFeature> allowed_features;
46 }; 44 };
47 45
48 } // namespace content 46 } // namespace content
49 47
50 #endif // CONTENT_COMMON_FRAME_OWNER_PROPERTIES_H_ 48 #endif // CONTENT_COMMON_FRAME_OWNER_PROPERTIES_H_
OLDNEW
« no previous file with comments | « chrome/test/BUILD.gn ('k') | content/common/frame_owner_properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698