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

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

Issue 12211105: Move remaining non-test, non-Chrome-specific Prefs code to base/prefs/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments, merge to LKGR. Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/password_manager/password_store_default.h" 5 #include "chrome/browser/password_manager/password_store_default.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/prefs/pref_service.h"
10 #include "base/stl_util.h" 11 #include "base/stl_util.h"
11 #include "chrome/browser/password_manager/password_store_change.h" 12 #include "chrome/browser/password_manager/password_store_change.h"
12 #include "chrome/browser/prefs/pref_service.h"
13 #include "chrome/browser/profiles/profile.h" 13 #include "chrome/browser/profiles/profile.h"
14 #include "chrome/common/chrome_constants.h" 14 #include "chrome/common/chrome_constants.h"
15 #include "chrome/common/chrome_notification_types.h" 15 #include "chrome/common/chrome_notification_types.h"
16 #include "chrome/common/pref_names.h" 16 #include "chrome/common/pref_names.h"
17 #include "content/public/browser/browser_thread.h" 17 #include "content/public/browser/browser_thread.h"
18 #include "content/public/browser/notification_service.h" 18 #include "content/public/browser/notification_service.h"
19 19
20 using content::BrowserThread; 20 using content::BrowserThread;
21 using content::PasswordForm; 21 using content::PasswordForm;
22 22
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 std::vector<PasswordForm*>* forms) { 117 std::vector<PasswordForm*>* forms) {
118 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB)); 118 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
119 return login_db_->GetAutofillableLogins(forms); 119 return login_db_->GetAutofillableLogins(forms);
120 } 120 }
121 121
122 bool PasswordStoreDefault::FillBlacklistLogins( 122 bool PasswordStoreDefault::FillBlacklistLogins(
123 std::vector<PasswordForm*>* forms) { 123 std::vector<PasswordForm*>* forms) {
124 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB)); 124 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
125 return login_db_->GetBlacklistLogins(forms); 125 return login_db_->GetBlacklistLogins(forms);
126 } 126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698