| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 OriginTrialContext_h | 5 #ifndef OriginTrialContext_h |
| 6 #define OriginTrialContext_h | 6 #define OriginTrialContext_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/dom/ExecutionContext.h" |
| 9 #include "platform/Supplementable.h" | 10 #include "platform/Supplementable.h" |
| 10 #include "wtf/HashSet.h" | 11 #include "wtf/HashSet.h" |
| 11 #include "wtf/Vector.h" | 12 #include "wtf/Vector.h" |
| 12 #include "wtf/text/StringHash.h" | 13 #include "wtf/text/StringHash.h" |
| 13 #include "wtf/text/WTFString.h" | 14 #include "wtf/text/WTFString.h" |
| 14 | 15 |
| 15 namespace blink { | 16 namespace blink { |
| 16 | 17 |
| 17 class ExecutionContext; | 18 class ExecutionContext; |
| 18 enum class WebOriginTrialTokenStatus; | 19 enum class WebOriginTrialTokenStatus; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 WebTrialTokenValidator* m_trialTokenValidator; | 91 WebTrialTokenValidator* m_trialTokenValidator; |
| 91 | 92 |
| 92 // Records whether a feature has been installed into the host's V8 context, | 93 // Records whether a feature has been installed into the host's V8 context, |
| 93 // for each feature name. | 94 // for each feature name. |
| 94 HashSet<String> m_bindingsInstalled; | 95 HashSet<String> m_bindingsInstalled; |
| 95 }; | 96 }; |
| 96 | 97 |
| 97 } // namespace blink | 98 } // namespace blink |
| 98 | 99 |
| 99 #endif // OriginTrialContext_h | 100 #endif // OriginTrialContext_h |
| OLD | NEW |