Index: chrome/browser/sync/backup_rollback_controller.cc |
diff --git a/chrome/browser/sync/backup_rollback_controller.cc b/chrome/browser/sync/backup_rollback_controller.cc |
index ab112779e11b390c04939920cc3c433a9836624d..fdef5cb566ba16e336d281ccbea6bd3ba3a9309d 100644 |
--- a/chrome/browser/sync/backup_rollback_controller.cc |
+++ b/chrome/browser/sync/backup_rollback_controller.cc |
@@ -52,7 +52,7 @@ bool BackupRollbackController::StartRollback() { |
return false; |
// Don't roll back if disabled or user is signed in. |
- if (CommandLine::ForCurrentProcess()->HasSwitch( |
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
switches::kSyncDisableRollback) || |
!signin_->GetEffectiveUsername().empty()) { |
sync_prefs_->SetRemainingRollbackTries(0); |
@@ -86,9 +86,9 @@ bool BackupRollbackController::IsBackupEnabled() { |
const std::string group_name = |
base::FieldTrialList::FindFullName(kSyncBackupFinchName); |
- if (CommandLine::ForCurrentProcess()->HasSwitch( |
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch( |
switches::kSyncDisableBackup) || |
- group_name == kSyncBackupFinchDisabled) { |
+ group_name == kSyncBackupFinchDisabled) { |
return false; |
} |
return true; |