summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync_file_system/drive_file_sync_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync_file_system/drive_file_sync_service.cc')
-rw-r--r--chrome/browser/sync_file_system/drive_file_sync_service.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/chrome/browser/sync_file_system/drive_file_sync_service.cc b/chrome/browser/sync_file_system/drive_file_sync_service.cc
index 15691f49..c7a12a7 100644
--- a/chrome/browser/sync_file_system/drive_file_sync_service.cc
+++ b/chrome/browser/sync_file_system/drive_file_sync_service.cc
@@ -411,8 +411,7 @@ void DriveFileSyncService::RegisterOriginForTrackingChanges(
void DriveFileSyncService::UnregisterOriginForTrackingChanges(
const GURL& origin,
const SyncStatusCallback& callback) {
- scoped_ptr<TaskToken> token(
- GetToken(FROM_HERE, TASK_TYPE_DATABASE, std::string()));
+ scoped_ptr<TaskToken> token(GetToken(FROM_HERE, TASK_TYPE_DATABASE, ""));
if (!token) {
pending_tasks_.push_back(base::Bind(
&DriveFileSyncService::UnregisterOriginForTrackingChanges,
@@ -443,8 +442,7 @@ void DriveFileSyncService::EnableOriginForTrackingChanges(
if (!metadata_store_->IsOriginDisabled(origin))
return;
- scoped_ptr<TaskToken> token(
- GetToken(FROM_HERE, TASK_TYPE_DATABASE, std::string()));
+ scoped_ptr<TaskToken> token(GetToken(FROM_HERE, TASK_TYPE_DATABASE, ""));
if (!token) {
pending_tasks_.push_back(base::Bind(
&DriveFileSyncService::EnableOriginForTrackingChanges,
@@ -465,8 +463,7 @@ void DriveFileSyncService::DisableOriginForTrackingChanges(
!metadata_store_->IsIncrementalSyncOrigin(origin))
return;
- scoped_ptr<TaskToken> token(
- GetToken(FROM_HERE, TASK_TYPE_DATABASE, std::string()));
+ scoped_ptr<TaskToken> token(GetToken(FROM_HERE, TASK_TYPE_DATABASE, ""));
if (!token) {
pending_tasks_.push_back(base::Bind(
&DriveFileSyncService::DisableOriginForTrackingChanges,