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

Unified Diff: chrome/browser/password_manager/simple_password_store_mac.cc

Issue 2909283002: Delete PasswordStoreMac and SimplePasswordStoreMac. (Closed)
Patch Set: test Created 3 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
Index: chrome/browser/password_manager/simple_password_store_mac.cc
diff --git a/chrome/browser/password_manager/simple_password_store_mac.cc b/chrome/browser/password_manager/simple_password_store_mac.cc
deleted file mode 100644
index 2d5585e19eb2ec07fc4e6b904a82ba398488f85f..0000000000000000000000000000000000000000
--- a/chrome/browser/password_manager/simple_password_store_mac.cc
+++ /dev/null
@@ -1,38 +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 "chrome/browser/password_manager/simple_password_store_mac.h"
-
-#include <utility>
-
-SimplePasswordStoreMac::SimplePasswordStoreMac(
- scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner,
- scoped_refptr<base::SingleThreadTaskRunner> background_thread_runner,
- std::unique_ptr<password_manager::LoginDatabase> login_db)
- : PasswordStoreDefault(main_thread_runner,
- background_thread_runner,
- std::move(login_db)) {
- if (this->login_db())
- this->login_db()->set_clear_password_values(false);
-}
-
-SimplePasswordStoreMac::~SimplePasswordStoreMac() {
-}
-
-void SimplePasswordStoreMac::InitWithTaskRunner(
- scoped_refptr<base::SingleThreadTaskRunner> background_task_runner,
- std::unique_ptr<password_manager::LoginDatabase> login_db) {
- db_thread_runner_ = background_task_runner;
- DCHECK(GetBackgroundTaskRunner()->BelongsToCurrentThread());
- set_login_db(std::move(login_db));
- if (this->login_db())
- this->login_db()->set_clear_password_values(false);
-}
-
-bool SimplePasswordStoreMac::Init(
- const syncer::SyncableService::StartSyncFlare& flare,
- PrefService* prefs) {
- NOTREACHED();
- return false;
-}

Powered by Google App Engine
This is Rietveld 408576698