| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_REPLICATION_STATE_H_ | 5 #ifndef CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ |
| 6 #define CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ | 6 #define CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 #include "content/common/content_security_policy_header.h" | 12 #include "content/common/content_security_policy_structs.h" |
| 13 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" | 13 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" |
| 14 #include "url/origin.h" | 14 #include "url/origin.h" |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 enum class WebTreeScopeType; | 17 enum class WebTreeScopeType; |
| 18 enum class WebSandboxFlags; | 18 enum class WebSandboxFlags; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 | 22 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 // trustworthy. | 105 // trustworthy. |
| 106 bool has_potentially_trustworthy_unique_origin; | 106 bool has_potentially_trustworthy_unique_origin; |
| 107 | 107 |
| 108 // TODO(alexmos): Eventually, this structure can also hold other state that | 108 // TODO(alexmos): Eventually, this structure can also hold other state that |
| 109 // needs to be replicated, such as frame sizing info. | 109 // needs to be replicated, such as frame sizing info. |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 } // namespace content | 112 } // namespace content |
| 113 | 113 |
| 114 #endif // CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ | 114 #endif // CONTENT_COMMON_FRAME_REPLICATION_STATE_H_ |
| OLD | NEW |