| 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_SYNC_GLUE_PASSWORD_DATA_TYPE_CONTROLLER_H__ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_PASSWORD_DATA_TYPE_CONTROLLER_H__ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_PASSWORD_DATA_TYPE_CONTROLLER_H__ | 6 #define CHROME_BROWSER_SYNC_GLUE_PASSWORD_DATA_TYPE_CONTROLLER_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "components/sync_driver/non_ui_data_type_controller.h" | 11 #include "components/sync_driver/non_ui_data_type_controller.h" |
| 12 | 12 |
| 13 class Profile; | 13 class Profile; |
| 14 class ProfileSyncComponentsFactory; | 14 class ProfileSyncComponentsFactory; |
| 15 | 15 |
| 16 namespace password_manager { | 16 namespace password_manager { |
| 17 class PasswordStore; | 17 class PasswordStore; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace browser_sync { | 20 namespace browser_sync { |
| 21 | 21 |
| 22 // A class that manages the startup and shutdown of password sync. | 22 // A class that manages the startup and shutdown of password sync. |
| 23 class PasswordDataTypeController : public sync_driver::NonUIDataTypeController { | 23 class PasswordDataTypeController : public sync_driver::NonUIDataTypeController { |
| 24 public: | 24 public: |
| 25 PasswordDataTypeController( | 25 PasswordDataTypeController( |
| 26 ProfileSyncComponentsFactory* profile_sync_factory, | 26 ProfileSyncComponentsFactory* profile_sync_factory, |
| 27 Profile* profile); | 27 Profile* profile); |
| 28 | 28 |
| 29 // NonFrontendDataTypeController implementation | 29 // NonFrontendDataTypeController implementation |
| 30 virtual syncer::ModelType type() const OVERRIDE; | 30 virtual syncer::ModelType type() const override; |
| 31 virtual syncer::ModelSafeGroup model_safe_group() const OVERRIDE; | 31 virtual syncer::ModelSafeGroup model_safe_group() const override; |
| 32 | 32 |
| 33 protected: | 33 protected: |
| 34 virtual ~PasswordDataTypeController(); | 34 virtual ~PasswordDataTypeController(); |
| 35 | 35 |
| 36 // NonUIDataTypeController interface. | 36 // NonUIDataTypeController interface. |
| 37 virtual bool PostTaskOnBackendThread( | 37 virtual bool PostTaskOnBackendThread( |
| 38 const tracked_objects::Location& from_here, | 38 const tracked_objects::Location& from_here, |
| 39 const base::Closure& task) OVERRIDE; | 39 const base::Closure& task) override; |
| 40 virtual bool StartModels() OVERRIDE; | 40 virtual bool StartModels() override; |
| 41 | 41 |
| 42 private: | 42 private: |
| 43 Profile* const profile_; | 43 Profile* const profile_; |
| 44 scoped_refptr<password_manager::PasswordStore> password_store_; | 44 scoped_refptr<password_manager::PasswordStore> password_store_; |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(PasswordDataTypeController); | 46 DISALLOW_COPY_AND_ASSIGN(PasswordDataTypeController); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace browser_sync | 49 } // namespace browser_sync |
| 50 | 50 |
| 51 #endif // CHROME_BROWSER_SYNC_GLUE_PASSWORD_DATA_TYPE_CONTROLLER_H__ | 51 #endif // CHROME_BROWSER_SYNC_GLUE_PASSWORD_DATA_TYPE_CONTROLLER_H__ |
| OLD | NEW |