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/files/file_path.h" | 7 #include "base/files/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/external_process_importer_host.h" | 10 #include "chrome/browser/importer/external_process_importer_host.h" |
11 #include "chrome/browser/importer/importer_host.h" | 11 #include "chrome/browser/importer/importer_host.h" |
12 #include "chrome/browser/mac/master_prefs.h" | 12 #include "chrome/browser/mac/master_prefs.h" |
13 #include "chrome/browser/process_singleton.h" | 13 #include "chrome/browser/process_singleton.h" |
14 | 14 |
15 namespace first_run { | 15 namespace first_run { |
16 namespace internal { | 16 namespace internal { |
17 | 17 |
| 18 bool ImportBookmarks(const base::FilePath& import_bookmarks_path) { |
| 19 // http://crbug.com/48880 |
| 20 return false; |
| 21 } |
| 22 |
18 base::FilePath MasterPrefsPath() { | 23 base::FilePath MasterPrefsPath() { |
19 return master_prefs::MasterPrefsPath(); | 24 return master_prefs::MasterPrefsPath(); |
20 } | 25 } |
21 | 26 |
22 } // namespace internal | 27 } // namespace internal |
23 } // namespace first_run | 28 } // namespace first_run |
OLD | NEW |