diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-10 14:58:55 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-10 14:58:55 +0000 |
commit | bc4303d3eeb937a6ad851f364d9fa36ea40dc26b (patch) | |
tree | f7f0e826f891d1f5200a28539668c8fdbe41e2bb /chrome/browser/ui/startup/autolaunch_prompt.cc | |
parent | b68d96cf5d2b0628ebd8db90b51883c381868aa6 (diff) | |
download | chromium_src-bc4303d3eeb937a6ad851f364d9fa36ea40dc26b.zip chromium_src-bc4303d3eeb937a6ad851f364d9fa36ea40dc26b.tar.gz chromium_src-bc4303d3eeb937a6ad851f364d9fa36ea40dc26b.tar.bz2 |
Move more stuff out of browser_init.cc.
Move all startup prompts into chrome/browser/ui/startup.
Move ChromeOS profile init to chrome/browser/chromeos
http://crbug.com/127307
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10356065
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136300 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/startup/autolaunch_prompt.cc')
-rw-r--r-- | chrome/browser/ui/startup/autolaunch_prompt.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/chrome/browser/ui/startup/autolaunch_prompt.cc b/chrome/browser/ui/startup/autolaunch_prompt.cc new file mode 100644 index 0000000..88772b3 --- /dev/null +++ b/chrome/browser/ui/startup/autolaunch_prompt.cc @@ -0,0 +1,18 @@ +// Copyright (c) 2012 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/ui/startup/autolaunch_prompt.h" + +namespace browser { + +bool ShowAutolaunchPrompt(Profile* profile) { + // Autolaunch is only implemented on Windows right now. + return false; +} + +void RegisterAutolaunchPrefs(PrefService* prefs) { + // Autolaunch is only implemented on Windows right now. +} + +} // namespace browser |