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

Side by Side Diff: third_party/WebKit/Source/modules/webauth/NavigatorAuth.h

Issue 2533863002: Add WebAuthn bindings and client interface. (Closed)
Patch Set: Layout test expected file tweaks Created 3 years, 11 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef NavigatorAuth_h
6 #define NavigatorAuth_h
7
8 #include "platform/Supplementable.h"
9 #include "platform/heap/Handle.h"
10
11 namespace blink {
12
13 class Navigator;
14 class WebAuthentication;
15
16 class NavigatorAuth final : public GarbageCollected<NavigatorAuth>,
17 public Supplement<Navigator> {
18 USING_GARBAGE_COLLECTED_MIXIN(NavigatorAuth);
19
20 public:
21 static NavigatorAuth& from(Navigator&);
22
23 static WebAuthentication* authentication(Navigator&);
24 WebAuthentication* authentication();
25
26 DECLARE_TRACE();
27
28 private:
29 explicit NavigatorAuth(Navigator&);
30 static const char* supplementName();
31
32 Member<WebAuthentication> m_webauthentication;
33 };
34
35 } // namespace blink
36
37 #endif // NavigatorAuth_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/webauth/DEPS ('k') | third_party/WebKit/Source/modules/webauth/NavigatorAuth.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698