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

Side by Side Diff: chrome/browser/password_manager/password_store_proxy_mac.h

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/prefs/pref_member.h"
13 #include "base/threading/thread.h" 12 #include "base/threading/thread.h"
14 #include "components/password_manager/core/browser/keychain_migration_status_mac .h" 13 #include "components/password_manager/core/browser/keychain_migration_status_mac .h"
15 #include "components/password_manager/core/browser/password_store.h" 14 #include "components/password_manager/core/browser/password_store.h"
16 #include "components/password_manager/core/common/password_manager_pref_names.h" 15 #include "components/password_manager/core/common/password_manager_pref_names.h"
16 #include "components/prefs/pref_member.h"
17 17
18 namespace crypto { 18 namespace crypto {
19 class AppleKeychain; 19 class AppleKeychain;
20 } 20 }
21 21
22 namespace password_manager { 22 namespace password_manager {
23 class LoginDatabase; 23 class LoginDatabase;
24 } 24 }
25 25
26 class PasswordStoreMac; 26 class PasswordStoreMac;
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 // them. If this is the case then Shutdown() flushes the tasks after stopping 120 // them. If this is the case then Shutdown() flushes the tasks after stopping
121 // the background thread. 121 // the background thread.
122 // After InitOnBackgroundThread is run once, the queue may not be modified on 122 // After InitOnBackgroundThread is run once, the queue may not be modified on
123 // the background thread any more. 123 // the background thread any more.
124 std::vector<base::Closure> pending_ui_tasks_; 124 std::vector<base::Closure> pending_ui_tasks_;
125 125
126 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac); 126 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac);
127 }; 127 };
128 128
129 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ 129 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698