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

Unified Diff: Source/modules/credentialmanager/LocalCredential.h

Issue 573663002: Credential Manager: Wire up the client. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Null check. Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/credentialmanager/LocalCredential.h
diff --git a/Source/modules/credentialmanager/LocalCredential.h b/Source/modules/credentialmanager/LocalCredential.h
index 737dd94638f0d0a9b323e98ef998953deb86fc73..387e5e279e14b0607234be05645af04c5554d92c 100644
--- a/Source/modules/credentialmanager/LocalCredential.h
+++ b/Source/modules/credentialmanager/LocalCredential.h
@@ -13,15 +13,19 @@
namespace blink {
+class WebLocalCredential;
+
class LocalCredential FINAL : public Credential {
DEFINE_WRAPPERTYPEINFO();
public:
+ static LocalCredential* create(WebLocalCredential*);
static LocalCredential* create(const String& id, const String& name, const String& avatar, const String& password, ExceptionState&);
// LocalCredential.idl
const String& password() const;
private:
+ LocalCredential(WebLocalCredential*);
LocalCredential(const String& id, const String& name, const KURL& avatar, const String& password);
};
« no previous file with comments | « Source/modules/credentialmanager/CredentialsContainer.cpp ('k') | Source/modules/credentialmanager/LocalCredential.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698