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

Unified Diff: public/platform/WebLocalCredential.h

Issue 1153403004: Credential Management: Rename 'LocalCredential' to 'PasswordCredential' (3/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@rename-password
Patch Set: Oops. Created 5 years, 7 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
« no previous file with comments | « Source/platform/exported/WebLocalCredential.cpp ('k') | public/platform/WebPasswordCredential.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebLocalCredential.h
diff --git a/public/platform/WebLocalCredential.h b/public/platform/WebLocalCredential.h
deleted file mode 100644
index 6c4de0e07f1cfb55dcf552a1a973abcd3d4d0646..0000000000000000000000000000000000000000
--- a/public/platform/WebLocalCredential.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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 "public/platform/WebCommon.h"
-#include "public/platform/WebCredential.h"
-#include "public/platform/WebString.h"
-#include "public/platform/WebURL.h"
-
-namespace blink {
-
-// TODO(mkwst): Throw this away once it's unused on the Chromium side: https://crbug.com/494880
-class WebLocalCredential : public WebCredential {
-public:
- BLINK_PLATFORM_EXPORT WebLocalCredential(const WebString& id, const WebString& password, const WebString& name, const WebURL& avatarURL);
-
- BLINK_PLATFORM_EXPORT WebLocalCredential(const WebString& id, const WebString& name, const WebURL& avatarURL, const WebString& password);
-
- BLINK_PLATFORM_EXPORT void assign(const WebLocalCredential&);
-
- BLINK_PLATFORM_EXPORT WebString password() const;
-
-#if INSIDE_BLINK
- BLINK_PLATFORM_EXPORT WebLocalCredential(PlatformCredential*);
- BLINK_PLATFORM_EXPORT WebLocalCredential& operator=(PlatformCredential*);
-#endif
-};
-
-} // namespace blink
-
-#endif // WebLocalCredential_h
-
-
-
« no previous file with comments | « Source/platform/exported/WebLocalCredential.cpp ('k') | public/platform/WebPasswordCredential.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698