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

Unified Diff: third_party/WebKit/Source/modules/credentialmanager/CredentialUserData.h

Issue 2832813002: Drop SiteBoundCredential in favor of CredentialUserData (Closed)
Patch Set: HTTPS Rename Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/credentialmanager/CredentialUserData.h
diff --git a/third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.h b/third_party/WebKit/Source/modules/credentialmanager/CredentialUserData.h
similarity index 71%
rename from third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.h
rename to third_party/WebKit/Source/modules/credentialmanager/CredentialUserData.h
index fe052b867474dce53b732e981133e939f0b76233..2d2570593ecc9fff69afa8a304498b520b8a400e 100644
--- a/third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.h
+++ b/third_party/WebKit/Source/modules/credentialmanager/CredentialUserData.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef SiteBoundCredential_h
-#define SiteBoundCredential_h
+#ifndef CredentialUserData_h
+#define CredentialUserData_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "modules/ModulesExport.h"
@@ -12,18 +12,18 @@
namespace blink {
-class MODULES_EXPORT SiteBoundCredential : public Credential {
+class MODULES_EXPORT CredentialUserData : public Credential {
DEFINE_WRAPPERTYPEINFO();
public:
- // SiteBoundCredential.idl
+ // CredentialUserData.idl
const String& name() const { return platform_credential_->GetName(); }
const KURL& iconURL() const { return platform_credential_->GetIconURL(); }
protected:
- SiteBoundCredential(PlatformCredential*);
+ CredentialUserData(PlatformCredential*);
};
} // namespace blink
-#endif // SiteBoundCredential_h
+#endif // CredentialUserData_h

Powered by Google App Engine
This is Rietveld 408576698