Chromium Code Reviews

Unified Diff: chrome/browser/sync/glue/password_data_type_controller.cc

Issue 5783004: Keep deinlining stuff. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Well, it all compiles locally? Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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 a4b43d2778ca4be0698e17560c2a55258accb43b..c48386077ced4614d367446e4d3b5fd85085bb89 100644
--- a/chrome/browser/sync/glue/password_data_type_controller.cc
+++ b/chrome/browser/sync/glue/password_data_type_controller.cc
@@ -73,6 +73,27 @@ void PasswordDataTypeController::Stop() {
NewRunnableMethod(this, &PasswordDataTypeController::StopImpl));
}
+bool PasswordDataTypeController::enabled() {
+ return true;
+}
+
+syncable::ModelType PasswordDataTypeController::type() {
+ return syncable::PASSWORDS;
+}
+
+browser_sync::ModelSafeGroup PasswordDataTypeController::model_safe_group() {
+ return browser_sync::GROUP_PASSWORD;
+}
+
+const char* PasswordDataTypeController::name() const {
+ // For logging only.
+ return "password";
+}
+
+DataTypeController::State PasswordDataTypeController::state() {
+ return state_;
+}
+
void PasswordDataTypeController::StartImpl() {
// No additional services need to be started before we can proceed
// with model association.

Powered by Google App Engine