| Index: chrome/browser/sync/profile_sync_service_harness.cc
|
| diff --git a/chrome/browser/sync/profile_sync_service_harness.cc b/chrome/browser/sync/profile_sync_service_harness.cc
|
| index e5a6fd69fa6c02e69c7207e8e9e30e91bf8910d5..6895527dc5dea68c5891de00171576ff14f1f00d 100644
|
| --- a/chrome/browser/sync/profile_sync_service_harness.cc
|
| +++ b/chrome/browser/sync/profile_sync_service_harness.cc
|
| @@ -902,7 +902,8 @@ const SyncSessionSnapshot*
|
| bool ProfileSyncServiceHarness::EnableSyncForDatatype(
|
| syncable::ModelType datatype) {
|
| VLOG(1) << GetClientInfoString(
|
| - "EnableSyncForDatatype(" + syncable::ModelTypeToString(datatype) + ")");
|
| + "EnableSyncForDatatype("
|
| + + std::string(syncable::ModelTypeToString(datatype)) + ")");
|
|
|
| syncable::ModelTypeSet synced_datatypes;
|
| if (wait_state_ == SYNC_DISABLED) {
|
| @@ -940,7 +941,8 @@ bool ProfileSyncServiceHarness::EnableSyncForDatatype(
|
| bool ProfileSyncServiceHarness::DisableSyncForDatatype(
|
| syncable::ModelType datatype) {
|
| VLOG(1) << GetClientInfoString(
|
| - "DisableSyncForDatatype(" + syncable::ModelTypeToString(datatype) + ")");
|
| + "DisableSyncForDatatype("
|
| + + std::string(syncable::ModelTypeToString(datatype)) + ")");
|
|
|
| syncable::ModelTypeSet synced_datatypes;
|
| if (service() == NULL) {
|
|
|