summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/first_run.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/chrome/browser/first_run.cc b/chrome/browser/first_run.cc
index a49276f..677a069 100644
--- a/chrome/browser/first_run.cc
+++ b/chrome/browser/first_run.cc
@@ -42,15 +42,7 @@ bool GetFirstRunSentinelFilePath(FilePath* path) {
return false;
#endif
- // TODO(evanm): remove this old_sentinel business once users are migrated.
- // http://code.google.com/p/chromium/issues/detail?id=24450
- FilePath old_sentinel = first_run_sentinel.AppendASCII("First Run Dev");
- first_run_sentinel = first_run_sentinel.AppendASCII(kSentinelFile);
-
- if (file_util::PathExists(old_sentinel))
- file_util::Move(old_sentinel, first_run_sentinel);
-
- *path = first_run_sentinel;
+ *path = first_run_sentinel.AppendASCII(kSentinelFile);
return true;
}