Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: chrome/browser/first_run/first_run_mac.mm

Issue 12670013: Out-of-process import on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: extract some more CLs Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
gab 2013/04/18 21:51:18 Fixed as a side-effect of running the same code on
20 return false;
21 }
22
23 base::FilePath MasterPrefsPath() { 18 base::FilePath MasterPrefsPath() {
24 return master_prefs::MasterPrefsPath(); 19 return master_prefs::MasterPrefsPath();
25 } 20 }
26 21
27 } // namespace internal 22 } // namespace internal
28 } // namespace first_run 23 } // namespace first_run
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698