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

Unified Diff: third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.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/SiteBoundCredential.h
diff --git a/third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.h b/third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.h
deleted file mode 100644
index fe052b867474dce53b732e981133e939f0b76233..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/credentialmanager/SiteBoundCredential.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2016 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 SiteBoundCredential_h
-#define SiteBoundCredential_h
-
-#include "bindings/core/v8/ScriptWrappable.h"
-#include "modules/ModulesExport.h"
-#include "modules/credentialmanager/Credential.h"
-#include "platform/heap/Handle.h"
-
-namespace blink {
-
-class MODULES_EXPORT SiteBoundCredential : public Credential {
- DEFINE_WRAPPERTYPEINFO();
-
- public:
- // SiteBoundCredential.idl
- const String& name() const { return platform_credential_->GetName(); }
- const KURL& iconURL() const { return platform_credential_->GetIconURL(); }
-
- protected:
- SiteBoundCredential(PlatformCredential*);
-};
-
-} // namespace blink
-
-#endif // SiteBoundCredential_h

Powered by Google App Engine
This is Rietveld 408576698