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

Side by Side Diff: third_party/WebKit/Source/modules/credentialmanager/FederatedCredential.h

Issue 1880393002: CREDENTIAL: Implement 'SiteBoundCredential'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ugh. Created 4 years, 8 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
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 FederatedCredential_h 5 #ifndef FederatedCredential_h
6 #define FederatedCredential_h 6 #define FederatedCredential_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "bindings/core/v8/SerializedScriptValue.h" 9 #include "bindings/core/v8/SerializedScriptValue.h"
10 #include "modules/ModulesExport.h" 10 #include "modules/ModulesExport.h"
11 #include "modules/credentialmanager/Credential.h" 11 #include "modules/credentialmanager/SiteBoundCredential.h"
12 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
13 #include "platform/weborigin/KURL.h" 13 #include "platform/weborigin/KURL.h"
14 14
15 namespace blink { 15 namespace blink {
16 16
17 class FederatedCredentialData; 17 class FederatedCredentialData;
18 class WebFederatedCredential; 18 class WebFederatedCredential;
19 19
20 class MODULES_EXPORT FederatedCredential final : public Credential { 20 class MODULES_EXPORT FederatedCredential final : public SiteBoundCredential {
21 DEFINE_WRAPPERTYPEINFO(); 21 DEFINE_WRAPPERTYPEINFO();
22 public: 22 public:
23 static FederatedCredential* create(const FederatedCredentialData&, Exception State&); 23 static FederatedCredential* create(const FederatedCredentialData&, Exception State&);
24 static FederatedCredential* create(WebFederatedCredential*); 24 static FederatedCredential* create(WebFederatedCredential*);
25 25
26 // FederatedCredential.idl 26 // FederatedCredential.idl
27 const String provider() const; 27 const String provider() const;
28 28
29 // TODO(mkwst): This is a stub, as we don't yet have any support on the Chro mium-side. 29 // TODO(mkwst): This is a stub, as we don't yet have any support on the Chro mium-side.
30 const String& protocol() const { return emptyString(); } 30 const String& protocol() const { return emptyString(); }
31 31
32 private: 32 private:
33 FederatedCredential(WebFederatedCredential*); 33 FederatedCredential(WebFederatedCredential*);
34 FederatedCredential(const String& id, const KURL& provider, const String& na me, const KURL& icon); 34 FederatedCredential(const String& id, const KURL& provider, const String& na me, const KURL& icon);
35 }; 35 };
36 36
37 } // namespace blink 37 } // namespace blink
38 38
39 #endif // FederatedCredential_h 39 #endif // FederatedCredential_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698