| OLD | NEW |
| 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_CHROMEOS_SIGNED_SETTINGS_MIGRATION_HELPER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_SETTINGS_SIGNED_SETTINGS_MIGRATION_HELPER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_SIGNED_SETTINGS_MIGRATION_HELPER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_SETTINGS_SIGNED_SETTINGS_MIGRATION_HELPER_H_ |
| 7 | 7 |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "chrome/browser/chromeos/login/ownership_service.h" | 9 #include "chrome/browser/chromeos/settings/ownership_service.h" |
| 10 #include "chrome/browser/chromeos/login/signed_settings_helper.h" | 10 #include "chrome/browser/chromeos/settings/signed_settings_helper.h" |
| 11 #include "chrome/browser/prefs/pref_value_map.h" | 11 #include "chrome/browser/prefs/pref_value_map.h" |
| 12 #include "content/public/browser/notification_observer.h" | 12 #include "content/public/browser/notification_observer.h" |
| 13 #include "content/public/browser/notification_registrar.h" | 13 #include "content/public/browser/notification_registrar.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class Value; | 16 class Value; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace chromeos { | 19 namespace chromeos { |
| 20 | 20 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 49 | 49 |
| 50 content::NotificationRegistrar registrar_; | 50 content::NotificationRegistrar registrar_; |
| 51 base::WeakPtrFactory<SignedSettingsMigrationHelper> ptr_factory_; | 51 base::WeakPtrFactory<SignedSettingsMigrationHelper> ptr_factory_; |
| 52 PrefValueMap migration_values_; | 52 PrefValueMap migration_values_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(SignedSettingsMigrationHelper); | 54 DISALLOW_COPY_AND_ASSIGN(SignedSettingsMigrationHelper); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace chromeos | 57 } // namespace chromeos |
| 58 | 58 |
| 59 #endif // CHROME_BROWSER_CHROMEOS_SIGNED_SETTINGS_MIGRATION_HELPER_H_ | 59 #endif // CHROME_BROWSER_CHROMEOS_SETTINGS_SIGNED_SETTINGS_MIGRATION_HELPER_H_ |
| OLD | NEW |