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

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

Issue 1828213002: CREDENTIAL: Implement the 'PasswordCredential(HTMLFormElement)' constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: EXPORT2 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/credentialmanager/Credential.h" 11 #include "modules/credentialmanager/Credential.h"
11 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
12 #include "platform/weborigin/KURL.h" 13 #include "platform/weborigin/KURL.h"
13 14
14 namespace blink { 15 namespace blink {
15 16
16 class FederatedCredentialData; 17 class FederatedCredentialData;
17 class WebFederatedCredential; 18 class WebFederatedCredential;
18 19
19 class FederatedCredential final : public Credential { 20 class MODULES_EXPORT FederatedCredential final : public Credential {
20 DEFINE_WRAPPERTYPEINFO(); 21 DEFINE_WRAPPERTYPEINFO();
21 public: 22 public:
22 static FederatedCredential* create(const FederatedCredentialData&, Exception State&); 23 static FederatedCredential* create(const FederatedCredentialData&, Exception State&);
23 static FederatedCredential* create(WebFederatedCredential*); 24 static FederatedCredential* create(WebFederatedCredential*);
24 25
25 // FederatedCredential.idl 26 // FederatedCredential.idl
26 const String provider() const; 27 const String provider() const;
27 28
28 // 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.
29 const String& protocol() const { return emptyString(); } 30 const String& protocol() const { return emptyString(); }
30 31
31 private: 32 private:
32 FederatedCredential(WebFederatedCredential*); 33 FederatedCredential(WebFederatedCredential*);
33 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);
34 }; 35 };
35 36
36 } // namespace blink 37 } // namespace blink
37 38
38 #endif // FederatedCredential_h 39 #endif // FederatedCredential_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698