blob: 2d9fe0883049f35797b808081c7568ae467b6a0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/first_run/first_run.h"
#include "base/file_path.h"
#include "base/string_util.h"
#include "chrome/browser/mac/master_prefs.h"
bool FirstRun::ImportBookmarks(const FilePath& import_bookmarks_path) {
// http://crbug.com/48880
return false;
}
// static
void FirstRun::PlatformSetup() {
// Things that Windows does here (creating a desktop icon, for example) are
// not needed.
}
// static
FilePath FirstRun::MasterPrefsPath() {
return master_prefs::MasterPrefsPath();
}
|