OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/first_run/first_run.h" | 5 #include "chrome/browser/first_run/first_run.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "chrome/browser/first_run/first_run_internal.h" | 9 #include "chrome/browser/first_run/first_run_internal.h" |
10 #include "chrome/browser/importer/importer_host.h" | 10 #include "chrome/browser/importer/importer_host.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 import_items, | 54 import_items, |
55 dont_import_items, | 55 dont_import_items, |
56 search_engine_experiment, | 56 search_engine_experiment, |
57 randomize_search_engine_experiment, | 57 randomize_search_engine_experiment, |
58 make_chrome_default); | 58 make_chrome_default); |
59 | 59 |
60 process_singleton->Unlock(); | 60 process_singleton->Unlock(); |
61 first_run::CreateSentinel(); | 61 first_run::CreateSentinel(); |
62 } | 62 } |
63 | 63 |
64 } //namespace first_run | 64 FilePath MasterPrefsPath() { |
65 | |
66 // static | |
67 FilePath FirstRun::MasterPrefsPath() { | |
68 return master_prefs::MasterPrefsPath(); | 65 return master_prefs::MasterPrefsPath(); |
69 } | 66 } |
| 67 |
| 68 } //namespace first_run |
OLD | NEW |