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

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

Issue 2545693002: Support allowpaymentrequest with out-of-process iframes (Closed)
Patch Set: Support allowpaymentrequest with out-of-process iframes 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_messages.h ('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"
(...skipping 16 matching lines...) Expand all
27 27
28 bool operator==(const FrameOwnerProperties& other) const; 28 bool operator==(const FrameOwnerProperties& other) const;
29 bool operator!=(const FrameOwnerProperties& other) const { 29 bool operator!=(const FrameOwnerProperties& other) const {
30 return !(*this == other); 30 return !(*this == other);
31 } 31 }
32 32
33 blink::WebFrameOwnerProperties::ScrollingMode scrolling_mode; 33 blink::WebFrameOwnerProperties::ScrollingMode scrolling_mode;
34 int margin_width; 34 int margin_width;
35 int margin_height; 35 int margin_height;
36 bool allow_fullscreen; 36 bool allow_fullscreen;
37 bool allow_payment_request;
37 38
38 // An experimental attribute to be used by a parent frame to enforce CSP on a 39 // An experimental attribute to be used by a parent frame to enforce CSP on a
39 // subframe. This is different from replicated CSP headers kept in 40 // subframe. This is different from replicated CSP headers kept in
40 // FrameReplicationState that keep track of CSP headers currently in effect 41 // FrameReplicationState that keep track of CSP headers currently in effect
41 // for a frame. See https://crbug.com/647588 and 42 // for a frame. See https://crbug.com/647588 and
42 // https://www.w3.org/TR/csp-embedded-enforcement/#required-csp 43 // https://www.w3.org/TR/csp-embedded-enforcement/#required-csp
43 std::string required_csp; 44 std::string required_csp;
44 45
45 std::vector<blink::WebPermissionType> delegated_permissions; 46 std::vector<blink::WebPermissionType> delegated_permissions;
46 }; 47 };
47 48
48 } // namespace content 49 } // namespace content
49 50
50 #endif // CONTENT_COMMON_FRAME_OWNER_PROPERTIES_H_ 51 #endif // CONTENT_COMMON_FRAME_OWNER_PROPERTIES_H_
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/common/frame_owner_properties.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698