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

Unified Diff: public/platform/WebLocalCredential.h

Issue 457683002: Credential Manager: Add platform-exposed Credential objects. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Strings. Created 6 years, 4 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: public/platform/WebLocalCredential.h
diff --git a/public/platform/WebLocalCredential.h b/public/platform/WebLocalCredential.h
new file mode 100644
index 0000000000000000000000000000000000000000..730e9052220e6ddfe02c1a1e9642107a520c5c2d
--- /dev/null
+++ b/public/platform/WebLocalCredential.h
@@ -0,0 +1,29 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WebLocalCredential_h
+#define WebLocalCredential_h
+
+#include "WebCommon.h"
+#include "WebCredential.h"
+#include "WebPrivatePtr.h"
sof 2014/08/10 05:54:57 Redundant #include.
Mike West 2014/08/11 07:56:50 Done.
+#include "WebString.h"
+
+namespace blink {
+
+class WebLocalCredential : public WebCredential {
+public:
+ BLINK_PLATFORM_EXPORT WebLocalCredential(const WebString& id, const WebString& name, const WebString& avatarURL, const WebString& password);
+
+ BLINK_PLATFORM_EXPORT void assign(const WebLocalCredential&);
+
+ BLINK_PLATFORM_EXPORT WebString password() const;
+};
+
+} // namespace blink
+
+#endif // WebLocalCredential_h
+
+
+
« public/platform/WebFederatedCredential.h ('K') | « public/platform/WebFederatedCredential.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698