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

Side by Side Diff: chrome/browser/sync/glue/autofill_profile_data_type_controller.h

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts Created 7 years, 6 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 #ifndef CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_DATA_TYPE_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_DATA_TYPE_CONTROLLER_H_
6 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_DATA_TYPE_CONTROLLER_H_ 6 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_DATA_TYPE_CONTROLLER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/scoped_observer.h" 10 #include "base/scoped_observer.h"
11 #include "chrome/browser/sync/glue/non_ui_data_type_controller.h" 11 #include "chrome/browser/sync/glue/non_ui_data_type_controller.h"
12 #include "components/autofill/browser/personal_data_manager_observer.h" 12 #include "components/autofill/core/browser/personal_data_manager_observer.h"
13 13
14 namespace autofill { 14 namespace autofill {
15 class PersonalDataManager; 15 class PersonalDataManager;
16 } // namespace autofill 16 } // namespace autofill
17 17
18 namespace browser_sync { 18 namespace browser_sync {
19 19
20 class AutofillProfileDataTypeController 20 class AutofillProfileDataTypeController
21 : public NonUIDataTypeController, 21 : public NonUIDataTypeController,
22 public autofill::PersonalDataManagerObserver { 22 public autofill::PersonalDataManagerObserver {
(...skipping 26 matching lines...) Expand all
49 49
50 autofill::PersonalDataManager* personal_data_; 50 autofill::PersonalDataManager* personal_data_;
51 bool callback_registered_; 51 bool callback_registered_;
52 52
53 DISALLOW_COPY_AND_ASSIGN(AutofillProfileDataTypeController); 53 DISALLOW_COPY_AND_ASSIGN(AutofillProfileDataTypeController);
54 }; 54 };
55 55
56 } // namespace browser_sync 56 } // namespace browser_sync
57 57
58 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_DATA_TYPE_CONTROLLER_H_ 58 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_DATA_TYPE_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698