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

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

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. 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/model/syncable_service.h"
23 23
24 class PasswordStoreProxyMac; 24 class PasswordStoreProxyMac;
25 25
26 namespace autofill { 26 namespace autofill {
27 struct PasswordForm; 27 struct PasswordForm;
28 } 28 }
29 29
30 namespace syncer { 30 namespace syncer {
31 class SyncableService; 31 class SyncableService;
32 } 32 }
(...skipping 468 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