blob: 5db05e4b26f6b997099bbcad1487284d11109d93 [file] [log] [blame]
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_STARTUP_DEFAULT_BROWSER_PROMPT_H_
#define CHROME_BROWSER_UI_STARTUP_DEFAULT_BROWSER_PROMPT_H_
class PrefRegistrySimple;
class PrefService;
class Profile;
void RegisterDefaultBrowserPromptPrefs(PrefRegistrySimple* registry);
// Migrates the old last declined time profile pref to the new last declined
// time local pref.
void MigrateDefaultBrowserLastDeclinedPref(PrefService* profile_prefs);
// Shows a prompt UI to set the default browser if necessary.
void ShowDefaultBrowserPrompt(Profile* profile);
// Only used within tests to confirm the behavior of the default browser prompt.
void ShowPromptForTesting();
#endif // CHROME_BROWSER_UI_STARTUP_DEFAULT_BROWSER_PROMPT_H_