Convert remoting_unittests to run exclusively on Swarming
[chromium-blink-merge.git] / chrome / browser / password_manager / simple_password_store_mac.cc
blob6c60f984a67d9fff7ad5fd6a79a2f1bad79c09cf
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/password_manager/simple_password_store_mac.h"
7 SimplePasswordStoreMac::SimplePasswordStoreMac(
8 scoped_refptr<base::SingleThreadTaskRunner> main_thread_runner,
9 scoped_refptr<base::SingleThreadTaskRunner> background_thread_runner,
10 scoped_ptr<password_manager::LoginDatabase> login_db)
11 : PasswordStoreDefault(main_thread_runner, background_thread_runner,
12 login_db.Pass()) {
13 this->login_db()->set_clear_password_values(false);
16 SimplePasswordStoreMac::~SimplePasswordStoreMac() {
19 bool SimplePasswordStoreMac::Init(
20 const syncer::SyncableService::StartSyncFlare& flare) {
21 // All the initialization has to be done by the owner of the object.
22 return true;
25 void SimplePasswordStoreMac::Shutdown() {
26 PasswordStoreDefault::Shutdown();