Index: chrome/browser/sync/glue/password_data_type_controller.cc |
diff --git a/chrome/browser/sync/glue/password_data_type_controller.cc b/chrome/browser/sync/glue/password_data_type_controller.cc |
index 679d03bf54377c5745be39b893deb66a6003cd42..e2d07e76c6972a15a3bfec511aa1f649a5bdb9c2 100644 |
--- a/chrome/browser/sync/glue/password_data_type_controller.cc |
+++ b/chrome/browser/sync/glue/password_data_type_controller.cc |
@@ -28,9 +28,17 @@ PasswordDataTypeController::PasswordDataTypeController( |
sync_service) { |
} |
-PasswordDataTypeController::~PasswordDataTypeController() { |
+syncable::ModelType PasswordDataTypeController::type() const { |
+ return syncable::PASSWORDS; |
} |
+browser_sync::ModelSafeGroup PasswordDataTypeController::model_safe_group() |
+ const { |
+ return browser_sync::GROUP_PASSWORD; |
+} |
+ |
+PasswordDataTypeController::~PasswordDataTypeController() {} |
+ |
bool PasswordDataTypeController::PostTaskOnBackendThread( |
const tracked_objects::Location& from_here, |
const base::Closure& task) { |
@@ -68,13 +76,4 @@ void PasswordDataTypeController::CreateSyncComponents() { |
set_change_processor(sync_components.change_processor); |
} |
-syncable::ModelType PasswordDataTypeController::type() const { |
- return syncable::PASSWORDS; |
-} |
- |
-browser_sync::ModelSafeGroup PasswordDataTypeController::model_safe_group() |
- const { |
- return browser_sync::GROUP_PASSWORD; |
-} |
- |
} // namespace browser_sync |