| 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 WebAuthentication_h | 5 #ifndef WebAuthentication_h |
| 6 #define WebAuthentication_h | 6 #define WebAuthentication_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ArrayBufferOrArrayBufferView.h" | 8 #include "bindings/core/v8/ArrayBufferOrArrayBufferView.h" |
| 9 #include "bindings/core/v8/ScriptPromise.h" | 9 #include "bindings/core/v8/ScriptPromise.h" |
| 10 #include "bindings/core/v8/ScriptWrappable.h" | |
| 11 #include "core/dom/DOMArrayBuffer.h" | 10 #include "core/dom/DOMArrayBuffer.h" |
| 12 #include "modules/webauth/AuthenticationAssertionOptions.h" | 11 #include "modules/webauth/AuthenticationAssertionOptions.h" |
| 13 #include "modules/webauth/RelyingPartyAccount.h" | 12 #include "modules/webauth/RelyingPartyAccount.h" |
| 14 #include "modules/webauth/ScopedCredentialOptions.h" | 13 #include "modules/webauth/ScopedCredentialOptions.h" |
| 15 #include "modules/webauth/ScopedCredentialParameters.h" | 14 #include "modules/webauth/ScopedCredentialParameters.h" |
| 15 #include "platform/bindings/ScriptWrappable.h" |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 | 18 |
| 19 class LocalFrame; | 19 class LocalFrame; |
| 20 class ScriptState; | 20 class ScriptState; |
| 21 class RelyingPartyAccount; | 21 class RelyingPartyAccount; |
| 22 class AuthenticationAssertionOptions; | 22 class AuthenticationAssertionOptions; |
| 23 class ScopedCredentialParameters; | 23 class ScopedCredentialParameters; |
| 24 class ScopedCredentialOptions; | 24 class ScopedCredentialOptions; |
| 25 | 25 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 50 | 50 |
| 51 DEFINE_INLINE_TRACE() {} | 51 DEFINE_INLINE_TRACE() {} |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 explicit WebAuthentication(LocalFrame&); | 54 explicit WebAuthentication(LocalFrame&); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace blink | 57 } // namespace blink |
| 58 | 58 |
| 59 #endif // WebAuthentication_h | 59 #endif // WebAuthentication_h |
| OLD | NEW |