blob: 367187f0fd87ce3c82367d4b08cb67b5a25c308b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 chrome {
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 chrome
|