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 |