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

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

Issue 1480153002: Investigate Android build problems in review 1414463004. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Add //url dep on GN test_support target. Created 5 years 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
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 68
69 // PasswordStore: 69 // PasswordStore:
70 void ReportMetricsImpl(const std::string& sync_username, 70 void ReportMetricsImpl(const std::string& sync_username,
71 bool custom_passphrase_sync_enabled) override; 71 bool custom_passphrase_sync_enabled) override;
72 password_manager::PasswordStoreChangeList AddLoginImpl( 72 password_manager::PasswordStoreChangeList AddLoginImpl(
73 const autofill::PasswordForm& form) override; 73 const autofill::PasswordForm& form) override;
74 password_manager::PasswordStoreChangeList UpdateLoginImpl( 74 password_manager::PasswordStoreChangeList UpdateLoginImpl(
75 const autofill::PasswordForm& form) override; 75 const autofill::PasswordForm& form) override;
76 password_manager::PasswordStoreChangeList RemoveLoginImpl( 76 password_manager::PasswordStoreChangeList RemoveLoginImpl(
77 const autofill::PasswordForm& form) override; 77 const autofill::PasswordForm& form) override;
78 password_manager::PasswordStoreChangeList RemoveLoginsByOriginAndTimeImpl(
79 const url::Origin& origin,
80 base::Time delete_begin,
81 base::Time delete_end) override;
78 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl( 82 password_manager::PasswordStoreChangeList RemoveLoginsCreatedBetweenImpl(
79 base::Time delete_begin, 83 base::Time delete_begin,
80 base::Time delete_end) override; 84 base::Time delete_end) override;
81 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl( 85 password_manager::PasswordStoreChangeList RemoveLoginsSyncedBetweenImpl(
82 base::Time delete_begin, 86 base::Time delete_begin,
83 base::Time delete_end) override; 87 base::Time delete_end) override;
84 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin, 88 bool RemoveStatisticsCreatedBetweenImpl(base::Time delete_begin,
85 base::Time delete_end) override; 89 base::Time delete_end) override;
86 ScopedVector<autofill::PasswordForm> FillMatchingLogins( 90 ScopedVector<autofill::PasswordForm> FillMatchingLogins(
87 const autofill::PasswordForm& form, 91 const autofill::PasswordForm& form,
(...skipping 27 matching lines...) Expand all
115 // them. If this is the case then Shutdown() flushes the tasks after stopping 119 // them. If this is the case then Shutdown() flushes the tasks after stopping
116 // the background thread. 120 // the background thread.
117 // After InitOnBackgroundThread is run once, the queue may not be modified on 121 // After InitOnBackgroundThread is run once, the queue may not be modified on
118 // the background thread any more. 122 // the background thread any more.
119 std::vector<base::Closure> pending_ui_tasks_; 123 std::vector<base::Closure> pending_ui_tasks_;
120 124
121 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac); 125 DISALLOW_COPY_AND_ASSIGN(PasswordStoreProxyMac);
122 }; 126 };
123 127
124 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_ 128 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_PROXY_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698