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

Side by Side Diff: components/password_manager/core/browser/password_store.h

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: Created 4 years, 2 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <ostream> 9 #include <ostream>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/gtest_prod_util.h" 14 #include "base/gtest_prod_util.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/observer_list_threadsafe.h" 16 #include "base/observer_list_threadsafe.h"
17 #include "base/single_thread_task_runner.h" 17 #include "base/single_thread_task_runner.h"
18 #include "base/time/time.h" 18 #include "base/time/time.h"
19 #include "components/keyed_service/core/refcounted_keyed_service.h" 19 #include "components/keyed_service/core/refcounted_keyed_service.h"
20 #include "components/password_manager/core/browser/password_store_change.h" 20 #include "components/password_manager/core/browser/password_store_change.h"
21 #include "components/password_manager/core/browser/password_store_sync.h" 21 #include "components/password_manager/core/browser/password_store_sync.h"
22 #include "components/sync/api/syncable_service.h" 22 #include "components/sync/api/syncable_service.h"
23 23
24 class PasswordStoreProxyMac;
25
26 namespace autofill { 24 namespace autofill {
27 struct PasswordForm; 25 struct PasswordForm;
28 } 26 }
29 27
30 namespace syncer { 28 namespace syncer {
31 class SyncableService; 29 class SyncableService;
32 } 30 }
33 31
32 class PasswordStoreProxyMac;
33
34 namespace password_manager { 34 namespace password_manager {
35 35
36 class AffiliatedMatchHelper; 36 class AffiliatedMatchHelper;
37 class PasswordStoreConsumer; 37 class PasswordStoreConsumer;
38 class PasswordSyncableService; 38 class PasswordSyncableService;
39 struct InteractionsStats; 39 struct InteractionsStats;
40 40
41 // Interface for storing form passwords in a platform-specific secure way. 41 // Interface for storing form passwords in a platform-specific secure way.
42 // The login request/manipulation API is not threadsafe and must be used 42 // The login request/manipulation API is not threadsafe and must be used
43 // from the UI thread. 43 // from the UI thread.
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 DISALLOW_COPY_AND_ASSIGN(PasswordStore); 501 DISALLOW_COPY_AND_ASSIGN(PasswordStore);
502 }; 502 };
503 503
504 // For logging only. 504 // For logging only.
505 std::ostream& operator<<(std::ostream& os, 505 std::ostream& operator<<(std::ostream& os,
506 const PasswordStore::FormDigest& digest); 506 const PasswordStore::FormDigest& digest);
507 507
508 } // namespace password_manager 508 } // namespace password_manager
509 509
510 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_ 510 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_STORE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698