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