diff options
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 |