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

Side by Side Diff: chrome/browser/password_manager/simple_password_store_mac.cc

Issue 1192963002: Implement PasswordStoreProxyMac and SimplePasswordStoreMac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed the comments Created 5 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include "chrome/browser/password_manager/simple_password_store_mac.h"
6
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);
14 }
15
16 SimplePasswordStoreMac::~SimplePasswordStoreMac() {
17 }
18
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;
23 }
24
25 void SimplePasswordStoreMac::Shutdown() {
26 PasswordStoreDefault::Shutdown();
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698