| Index: components/password_manager/content/common/credential_manager_content_utils.cc
|
| diff --git a/components/password_manager/content/common/credential_manager_content_utils.cc b/components/password_manager/content/common/credential_manager_content_utils.cc
|
| deleted file mode 100644
|
| index 6205abdbe007d592da84d2eac71e9ff59b815fb0..0000000000000000000000000000000000000000
|
| --- a/components/password_manager/content/common/credential_manager_content_utils.cc
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -// Copyright 2015 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.
|
| -
|
| -#include "components/password_manager/content/common/credential_manager_content_utils.h"
|
| -
|
| -#include "base/logging.h"
|
| -#include "third_party/WebKit/public/platform/WebCredential.h"
|
| -#include "third_party/WebKit/public/platform/WebFederatedCredential.h"
|
| -#include "third_party/WebKit/public/platform/WebPasswordCredential.h"
|
| -
|
| -namespace password_manager {
|
| -
|
| -CredentialInfo WebCredentialToCredentialInfo(
|
| - const blink::WebCredential& credential) {
|
| - CredentialInfo credential_info;
|
| - credential_info.id = credential.id();
|
| - credential_info.name = credential.name();
|
| - credential_info.icon = credential.iconURL();
|
| - credential_info.type = credential.isPasswordCredential()
|
| - ? CredentialType::CREDENTIAL_TYPE_PASSWORD
|
| - : CredentialType::CREDENTIAL_TYPE_FEDERATED;
|
| - if (credential_info.type == CredentialType::CREDENTIAL_TYPE_PASSWORD) {
|
| - DCHECK(credential.isPasswordCredential());
|
| - credential_info.password =
|
| - static_cast<const blink::WebPasswordCredential&>(credential).password();
|
| - } else {
|
| - DCHECK(credential.isFederatedCredential());
|
| - credential_info.federation =
|
| - static_cast<const blink::WebFederatedCredential&>(credential)
|
| - .provider();
|
| - }
|
| - return credential_info;
|
| -}
|
| -
|
| -} // namespace password_manager
|
|
|