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

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

Issue 1446963002: CREDENTIAL: Teach Fetch to handle PasswordCredential objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@opaque
Patch Set: Better Created 5 years, 1 month 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 Credential_h 5 #ifndef Credential_h
6 #define Credential_h 6 #define Credential_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "platform/credentialmanager/PlatformCredential.h" 9 #include "platform/credentialmanager/PlatformCredential.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
11 #include "platform/weborigin/KURL.h" 11 #include "platform/weborigin/KURL.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class ExceptionState; 15 class ExceptionState;
16 16
17 class Credential : public GarbageCollected<Credential>, public ScriptWrappable { 17 class Credential : public GarbageCollectedFinalized<Credential>, public ScriptWr appable {
philipj_slow 2015/11/17 15:53:59 Why was this change needed? I can't see a member t
Mike West 2015/11/18 09:12:51 I added `String` members to `PasswordCredential`,
philipj_slow 2015/11/18 10:00:05 Ah, a subclass, thanks!
18 DEFINE_WRAPPERTYPEINFO(); 18 DEFINE_WRAPPERTYPEINFO();
19 public: 19 public:
20 // Credential.idl 20 // Credential.idl
21 const String& id() const { return m_platformCredential->id(); } 21 const String& id() const { return m_platformCredential->id(); }
22 const String& name() const { return m_platformCredential->name(); } 22 const String& name() const { return m_platformCredential->name(); }
23 const KURL& iconURL() const { return m_platformCredential->iconURL(); } 23 const KURL& iconURL() const { return m_platformCredential->iconURL(); }
24 const String& type() const { return m_platformCredential->type(); } 24 const String& type() const { return m_platformCredential->type(); }
25 25
26 DECLARE_VIRTUAL_TRACE(); 26 DECLARE_VIRTUAL_TRACE();
27 27
28 PlatformCredential* platformCredential() const { return m_platformCredential ; } 28 PlatformCredential* platformCredential() const { return m_platformCredential ; }
29 29
30 protected: 30 protected:
31 Credential(PlatformCredential*); 31 Credential(PlatformCredential*);
32 Credential(const String& id, const String& name, const KURL& icon); 32 Credential(const String& id, const String& name, const KURL& icon);
33 33
34 // Parses a string as a KURL. Throws an exception via |exceptionState| if an invalid URL is produced. 34 // Parses a string as a KURL. Throws an exception via |exceptionState| if an invalid URL is produced.
35 static KURL parseStringAsURL(const String&, ExceptionState&); 35 static KURL parseStringAsURL(const String&, ExceptionState&);
36 36
37 Member<PlatformCredential> m_platformCredential; 37 Member<PlatformCredential> m_platformCredential;
38 }; 38 };
39 39
40 } // namespace blink 40 } // namespace blink
41 41
42 #endif // Credential_h 42 #endif // Credential_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698