blob: 8b955704fee855b1f02d244c8c956364883d99ea [file] [log] [blame]
// 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/shell_integration.h"
#include <windows.h>
#include <shlwapi.h>
#include <shobjidl.h>
#include <propkey.h> // Needs to come after shobjidl.h.
#include <stddef.h>
#include <stdint.h>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/files/file_enumerator.h"
#include "base/files/file_util.h"
#include "base/macros.h"
#include "base/message_loop/message_loop.h"
#include "base/metrics/field_trial.h"
#include "base/metrics/histogram_macros.h"
#include "base/path_service.h"
#include "base/process/launch.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/timer/timer.h"
#include "base/win/registry.h"
#include "base/win/scoped_comptr.h"
#include "base/win/scoped_propvariant.h"
#include "base/win/shortcut.h"
#include "base/win/windows_version.h"
#include "chrome/browser/policy/policy_path_parser.h"
#include "chrome/browser/ui/startup/startup_browser_creator.h"
#include "chrome/browser/web_applications/web_app.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths_internal.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/installer/setup/setup_util.h"
#include "chrome/installer/util/browser_distribution.h"
#include "chrome/installer/util/create_reg_key_work_item.h"
#include "chrome/installer/util/install_util.h"
#include "chrome/installer/util/set_reg_value_work_item.h"
#include "chrome/installer/util/shell_util.h"
#include "chrome/installer/util/util_constants.h"
#include "chrome/installer/util/work_item.h"
#include "chrome/installer/util/work_item_list.h"
#include "components/variations/variations_associated_data.h"
#include "content/public/browser/browser_thread.h"
using content::BrowserThread;
namespace shell_integration {
namespace {
const wchar_t kAppListAppNameSuffix[] = L"AppList";
const char kAsyncSetAsDefaultExperimentName[] = "AsyncSetAsDefault";
const char kAsyncSetAsDefaultEnabledGroupName[] = "Enabled";
// For client in the Enabled group of the AsyncSetAsDefault experiment, if the
// Windows build number of the user is greater or equal than this value, the
// default browser choice won't be reset.
const char kAsyncSetAsDefaultEnabledBuildNumberParamName[] =
"ResetOlderThanBuildNumber";
const char kEnableAsyncSetAsDefault[] = "enable-async-set-as-default";
const char kDisableAsyncSetAsDefault[] = "disable-async-set-as-default";
// Helper function for GetAppId to generates profile id
// from profile path. "profile_id" is composed of sanitized basenames of
// user data dir and profile dir joined by a ".".
base::string16 GetProfileIdFromPath(const base::FilePath& profile_path) {
// Return empty string if profile_path is empty
if (profile_path.empty())
return base::string16();
base::FilePath default_user_data_dir;
// Return empty string if profile_path is in default user data
// dir and is the default profile.
if (chrome::GetDefaultUserDataDirectory(&default_user_data_dir) &&
profile_path.DirName() == default_user_data_dir &&
profile_path.BaseName().value() ==
base::ASCIIToUTF16(chrome::kInitialProfile)) {
return base::string16();
}
// Get joined basenames of user data dir and profile.
base::string16 basenames = profile_path.DirName().BaseName().value() +
L"." + profile_path.BaseName().value();
base::string16 profile_id;
profile_id.reserve(basenames.size());
// Generate profile_id from sanitized basenames.
for (size_t i = 0; i < basenames.length(); ++i) {
if (base::IsAsciiAlpha(basenames[i]) ||
base::IsAsciiDigit(basenames[i]) ||
basenames[i] == L'.')
profile_id += basenames[i];
}
return profile_id;
}
base::string16 GetAppListAppName() {
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
base::string16 app_name(dist->GetBaseAppId());
app_name.append(kAppListAppNameSuffix);
return app_name;
}
// Gets expected app id for given Chrome (based on |command_line| and
// |is_per_user_install|).
base::string16 GetExpectedAppId(const base::CommandLine& command_line,
bool is_per_user_install) {
base::FilePath user_data_dir;
if (command_line.HasSwitch(switches::kUserDataDir))
user_data_dir = command_line.GetSwitchValuePath(switches::kUserDataDir);
else
chrome::GetDefaultUserDataDirectory(&user_data_dir);
// Adjust with any policy that overrides any other way to set the path.
policy::path_parser::CheckUserDataDirPolicy(&user_data_dir);
DCHECK(!user_data_dir.empty());
base::FilePath profile_subdir;
if (command_line.HasSwitch(switches::kProfileDirectory)) {
profile_subdir =
command_line.GetSwitchValuePath(switches::kProfileDirectory);
} else {
profile_subdir =
base::FilePath(base::ASCIIToUTF16(chrome::kInitialProfile));
}
DCHECK(!profile_subdir.empty());
base::FilePath profile_path = user_data_dir.Append(profile_subdir);
base::string16 app_name;
if (command_line.HasSwitch(switches::kApp)) {
app_name = base::UTF8ToUTF16(web_app::GenerateApplicationNameFromURL(
GURL(command_line.GetSwitchValueASCII(switches::kApp))));
} else if (command_line.HasSwitch(switches::kAppId)) {
app_name = base::UTF8ToUTF16(
web_app::GenerateApplicationNameFromExtensionId(
command_line.GetSwitchValueASCII(switches::kAppId)));
} else if (command_line.HasSwitch(switches::kShowAppList)) {
app_name = GetAppListAppName();
} else {
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
app_name = ShellUtil::GetBrowserModelId(dist, is_per_user_install);
}
DCHECK(!app_name.empty());
return GetAppModelIdForProfile(app_name, profile_path);
}
void MigrateTaskbarPinsCallback() {
// This should run on the file thread.
DCHECK_CURRENTLY_ON(BrowserThread::FILE);
// Get full path of chrome.
base::FilePath chrome_exe;
if (!PathService::Get(base::FILE_EXE, &chrome_exe))
return;
base::FilePath pins_path;
if (!PathService::Get(base::DIR_TASKBAR_PINS, &pins_path)) {
NOTREACHED();
return;
}
MigrateShortcutsInPathInternal(chrome_exe, pins_path);
}
// Windows 8 introduced a new protocol->executable binding system which cannot
// be retrieved in the HKCR registry subkey method implemented below. We call
// AssocQueryString with the new Win8-only flag ASSOCF_IS_PROTOCOL instead.
base::string16 GetAppForProtocolUsingAssocQuery(const GURL& url) {
base::string16 url_scheme = base::ASCIIToUTF16(url.scheme());
// Don't attempt to query protocol association on an empty string.
if (url_scheme.empty())
return base::string16();
// Query AssocQueryString for a human-readable description of the program
// that will be invoked given the provided URL spec. This is used only to
// populate the external protocol dialog box the user sees when invoking
// an unknown external protocol.
wchar_t out_buffer[1024];
DWORD buffer_size = arraysize(out_buffer);
HRESULT hr = AssocQueryString(ASSOCF_IS_PROTOCOL,
ASSOCSTR_FRIENDLYAPPNAME,
url_scheme.c_str(),
NULL,
out_buffer,
&buffer_size);
if (FAILED(hr)) {
DLOG(WARNING) << "AssocQueryString failed!";
return base::string16();
}
return base::string16(out_buffer);
}
base::string16 GetAppForProtocolUsingRegistry(const GURL& url) {
const base::string16 cmd_key_path =
base::ASCIIToUTF16(url.scheme() + "\\shell\\open\\command");
base::win::RegKey cmd_key(HKEY_CLASSES_ROOT,
cmd_key_path.c_str(),
KEY_READ);
base::string16 application_to_launch;
if (cmd_key.ReadValue(NULL, &application_to_launch) == ERROR_SUCCESS) {
const base::string16 url_spec =
base::ASCIIToUTF16(url.possibly_invalid_spec());
base::ReplaceSubstringsAfterOffset(&application_to_launch,
0,
L"%1",
url_spec);
return application_to_launch;
}
return base::string16();
}
DefaultWebClientState GetDefaultWebClientStateFromShellUtilDefaultState(
ShellUtil::DefaultState default_state) {
switch (default_state) {
case ShellUtil::NOT_DEFAULT:
return DefaultWebClientState::NOT_DEFAULT;
case ShellUtil::IS_DEFAULT:
return DefaultWebClientState::IS_DEFAULT;
default:
DCHECK_EQ(ShellUtil::UNKNOWN_DEFAULT, default_state);
return DefaultWebClientState::UNKNOWN_DEFAULT;
}
}
// Resets the default browser choice for the current user.
void ResetDefaultBrowser() {
static const wchar_t* const kUrlAssociationKeyFormats[] = {
L"SOFTWARE\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\"
L"%ls\\UserChoice",
L"SOFTWARE\\Microsoft\\Windows\\Roaming\\OpenWith\\UrlAssociations\\"
L"%ls\\UserChoice"};
static const wchar_t* const kProtocols[] = {L"http", L"https"};
for (const wchar_t* format : kUrlAssociationKeyFormats) {
for (const wchar_t* protocol : kProtocols) {
base::win::RegKey registry_key(
HKEY_CURRENT_USER, base::StringPrintf(format, protocol).c_str(),
KEY_SET_VALUE);
registry_key.DeleteValue(L"Hash");
}
}
}
// Returns true if the AsyncSetAsDefault field trial is activated.
bool IsAsyncSetAsDefaultEnabled() {
using base::CommandLine;
// Note: It's important to query the field trial state first, to ensure that
// UMA reports the correct group.
const std::string group_name =
base::FieldTrialList::FindFullName(kAsyncSetAsDefaultExperimentName);
if (CommandLine::ForCurrentProcess()->HasSwitch(kDisableAsyncSetAsDefault))
return false;
if (CommandLine::ForCurrentProcess()->HasSwitch(kEnableAsyncSetAsDefault))
return true;
return base::StartsWith(group_name, kAsyncSetAsDefaultEnabledGroupName,
base::CompareCase::SENSITIVE);
}
// Returns true if the default browser choice should be reset for the current
// user. Determined by an experiment parameter.
bool ShouldResetDefaultBrowser() {
// Get the build number where it is no longer needed to reset the default
// browser.
std::string build_number_value = variations::GetVariationParamValue(
kAsyncSetAsDefaultExperimentName,
kAsyncSetAsDefaultEnabledBuildNumberParamName);
int build_number = 0;
// Don't reset the default browser on empty/invalid values.
if (!base::StringToInt(build_number_value, &build_number))
return false;
DCHECK_NE(0, build_number);
return base::win::OSInfo::GetInstance()->version_number().build <
build_number;
}
bool RegisterBrowser() {
base::FilePath chrome_exe;
if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
NOTREACHED() << "Error getting app exe path";
return false;
}
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
return ShellUtil::RegisterChromeBrowser(dist, chrome_exe, base::string16(),
true);
}
} // namespace
bool IsSetAsDefaultAsynchronous() {
return base::win::GetVersion() >= base::win::VERSION_WIN10 &&
IsAsyncSetAsDefaultEnabled();
}
bool SetAsDefaultBrowser() {
base::FilePath chrome_exe;
if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
LOG(ERROR) << "Error getting app exe path";
return false;
}
// From UI currently we only allow setting default browser for current user.
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
if (!ShellUtil::MakeChromeDefault(dist, ShellUtil::CURRENT_USER, chrome_exe,
true /* elevate_if_not_admin */)) {
LOG(ERROR) << "Chrome could not be set as default browser.";
return false;
}
VLOG(1) << "Chrome registered as default browser.";
return true;
}
bool SetAsDefaultBrowserInteractive() {
base::FilePath chrome_exe;
if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
NOTREACHED() << "Error getting app exe path";
return false;
}
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
if (!ShellUtil::ShowMakeChromeDefaultSystemUI(dist, chrome_exe)) {
LOG(ERROR) << "Failed to launch the set-default-browser Windows UI.";
return false;
}
VLOG(1) << "Set-default-browser Windows UI completed.";
return true;
}
bool SetAsDefaultProtocolClient(const std::string& protocol) {
if (protocol.empty())
return false;
base::FilePath chrome_exe;
if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
LOG(ERROR) << "Error getting app exe path";
return false;
}
base::string16 wprotocol(base::UTF8ToUTF16(protocol));
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
if (!ShellUtil::MakeChromeDefaultProtocolClient(dist, chrome_exe,
wprotocol)) {
LOG(ERROR) << "Chrome could not be set as default handler for "
<< protocol << ".";
return false;
}
VLOG(1) << "Chrome registered as default handler for " << protocol << ".";
return true;
}
bool SetAsDefaultProtocolClientInteractive(const std::string& protocol) {
base::FilePath chrome_exe;
if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
NOTREACHED() << "Error getting app exe path";
return false;
}
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
base::string16 wprotocol(base::UTF8ToUTF16(protocol));
if (!ShellUtil::ShowMakeChromeDefaultProtocolClientSystemUI(dist, chrome_exe,
wprotocol)) {
LOG(ERROR) << "Failed to launch the set-default-client Windows UI.";
return false;
}
VLOG(1) << "Set-default-client Windows UI completed.";
return true;
}
DefaultWebClientSetPermission CanSetAsDefaultBrowser() {
BrowserDistribution* distribution = BrowserDistribution::GetDistribution();
if (distribution->GetDefaultBrowserControlPolicy() !=
BrowserDistribution::DEFAULT_BROWSER_FULL_CONTROL)
return SET_DEFAULT_NOT_ALLOWED;
if (ShellUtil::CanMakeChromeDefaultUnattended())
return SET_DEFAULT_UNATTENDED;
if (IsSetAsDefaultAsynchronous())
return SET_DEFAULT_ASYNCHRONOUS;
return SET_DEFAULT_INTERACTIVE;
}
bool IsElevationNeededForSettingDefaultProtocolClient() {
return base::win::GetVersion() < base::win::VERSION_WIN8;
}
base::string16 GetApplicationNameForProtocol(const GURL& url) {
// Windows 8 or above requires a new protocol association query.
if (base::win::GetVersion() >= base::win::VERSION_WIN8)
return GetAppForProtocolUsingAssocQuery(url);
else
return GetAppForProtocolUsingRegistry(url);
}
DefaultWebClientState GetDefaultBrowser() {
return GetDefaultWebClientStateFromShellUtilDefaultState(
ShellUtil::GetChromeDefaultState());
}
// There is no reliable way to say which browser is default on a machine (each
// browser can have some of the protocols/shortcuts). So we look for only HTTP
// protocol handler. Even this handler is located at different places in
// registry on XP and Vista:
// - HKCR\http\shell\open\command (XP)
// - HKCU\Software\Microsoft\Windows\Shell\Associations\UrlAssociations\
// http\UserChoice (Vista)
// This method checks if Firefox is defualt browser by checking these
// locations and returns true if Firefox traces are found there. In case of
// error (or if Firefox is not found)it returns the default value which
// is false.
bool IsFirefoxDefaultBrowser() {
bool ff_default = false;
if (base::win::GetVersion() >= base::win::VERSION_VISTA) {
base::string16 app_cmd;
base::win::RegKey key(HKEY_CURRENT_USER,
ShellUtil::kRegVistaUrlPrefs, KEY_READ);
if (key.Valid() && (key.ReadValue(L"Progid", &app_cmd) == ERROR_SUCCESS) &&
app_cmd == L"FirefoxURL")
ff_default = true;
} else {
base::string16 key_path(L"http");
key_path.append(ShellUtil::kRegShellOpen);
base::win::RegKey key(HKEY_CLASSES_ROOT, key_path.c_str(), KEY_READ);
base::string16 app_cmd;
if (key.Valid() && (key.ReadValue(L"", &app_cmd) == ERROR_SUCCESS) &&
base::string16::npos !=
base::ToLowerASCII(app_cmd).find(L"firefox"))
ff_default = true;
}
return ff_default;
}
DefaultWebClientState IsDefaultProtocolClient(const std::string& protocol) {
return GetDefaultWebClientStateFromShellUtilDefaultState(
ShellUtil::GetChromeDefaultProtocolClientState(
base::UTF8ToUTF16(protocol)));
}
base::string16 GetAppModelIdForProfile(const base::string16& app_name,
const base::FilePath& profile_path) {
std::vector<base::string16> components;
components.push_back(app_name);
const base::string16 profile_id(GetProfileIdFromPath(profile_path));
if (!profile_id.empty())
components.push_back(profile_id);
return ShellUtil::BuildAppModelId(components);
}
base::string16 GetChromiumModelIdForProfile(
const base::FilePath& profile_path) {
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
base::FilePath chrome_exe;
if (!PathService::Get(base::FILE_EXE, &chrome_exe)) {
NOTREACHED();
return dist->GetBaseAppId();
}
return GetAppModelIdForProfile(
ShellUtil::GetBrowserModelId(dist,
InstallUtil::IsPerUserInstall(chrome_exe)),
profile_path);
}
base::string16 GetAppListAppModelIdForProfile(
const base::FilePath& profile_path) {
return GetAppModelIdForProfile(GetAppListAppName(), profile_path);
}
void MigrateTaskbarPins() {
if (base::win::GetVersion() < base::win::VERSION_WIN7)
return;
// This needs to happen eventually (e.g. so that the appid is fixed and the
// run-time Chrome icon is merged with the taskbar shortcut), but this is not
// urgent and shouldn't delay Chrome startup.
static const int64_t kMigrateTaskbarPinsDelaySeconds = 15;
BrowserThread::PostDelayedTask(
BrowserThread::FILE, FROM_HERE,
base::Bind(&MigrateTaskbarPinsCallback),
base::TimeDelta::FromSeconds(kMigrateTaskbarPinsDelaySeconds));
}
int MigrateShortcutsInPathInternal(const base::FilePath& chrome_exe,
const base::FilePath& path) {
DCHECK(base::win::GetVersion() >= base::win::VERSION_WIN7);
// Enumerate all pinned shortcuts in the given path directly.
base::FileEnumerator shortcuts_enum(
path, false, // not recursive
base::FileEnumerator::FILES, FILE_PATH_LITERAL("*.lnk"));
bool is_per_user_install = InstallUtil::IsPerUserInstall(chrome_exe);
int shortcuts_migrated = 0;
base::FilePath target_path;
base::string16 arguments;
base::win::ScopedPropVariant propvariant;
for (base::FilePath shortcut = shortcuts_enum.Next(); !shortcut.empty();
shortcut = shortcuts_enum.Next()) {
// TODO(gab): Use ProgramCompare instead of comparing FilePaths below once
// it is fixed to work with FilePaths with spaces.
if (!base::win::ResolveShortcut(shortcut, &target_path, &arguments) ||
chrome_exe != target_path) {
continue;
}
base::CommandLine command_line(
base::CommandLine::FromString(base::StringPrintf(
L"\"%ls\" %ls", target_path.value().c_str(), arguments.c_str())));
// Get the expected AppId for this Chrome shortcut.
base::string16 expected_app_id(
GetExpectedAppId(command_line, is_per_user_install));
if (expected_app_id.empty())
continue;
// Load the shortcut.
base::win::ScopedComPtr<IShellLink> shell_link;
base::win::ScopedComPtr<IPersistFile> persist_file;
if (FAILED(shell_link.CreateInstance(CLSID_ShellLink, NULL,
CLSCTX_INPROC_SERVER)) ||
FAILED(persist_file.QueryFrom(shell_link.get())) ||
FAILED(persist_file->Load(shortcut.value().c_str(), STGM_READ))) {
DLOG(WARNING) << "Failed loading shortcut at " << shortcut.value();
continue;
}
// Any properties that need to be updated on the shortcut will be stored in
// |updated_properties|.
base::win::ShortcutProperties updated_properties;
// Validate the existing app id for the shortcut.
base::win::ScopedComPtr<IPropertyStore> property_store;
propvariant.Reset();
if (FAILED(property_store.QueryFrom(shell_link.get())) ||
property_store->GetValue(PKEY_AppUserModel_ID, propvariant.Receive()) !=
S_OK) {
// When in doubt, prefer not updating the shortcut.
NOTREACHED();
continue;
} else {
switch (propvariant.get().vt) {
case VT_EMPTY:
// If there is no app_id set, set our app_id if one is expected.
if (!expected_app_id.empty())
updated_properties.set_app_id(expected_app_id);
break;
case VT_LPWSTR:
if (expected_app_id != base::string16(propvariant.get().pwszVal))
updated_properties.set_app_id(expected_app_id);
break;
default:
NOTREACHED();
continue;
}
}
// Clear dual_mode property from any shortcuts that previously had it (it
// was only ever installed on shortcuts with the
// |default_chromium_model_id|).
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
base::string16 default_chromium_model_id(
ShellUtil::GetBrowserModelId(dist, is_per_user_install));
if (expected_app_id == default_chromium_model_id) {
propvariant.Reset();
if (property_store->GetValue(PKEY_AppUserModel_IsDualMode,
propvariant.Receive()) != S_OK) {
// When in doubt, prefer to not update the shortcut.
NOTREACHED();
continue;
}
if (propvariant.get().vt == VT_BOOL &&
!!propvariant.get().boolVal) {
updated_properties.set_dual_mode(false);
}
}
persist_file.Release();
shell_link.Release();
// Update the shortcut if some of its properties need to be updated.
if (updated_properties.options &&
base::win::CreateOrUpdateShortcutLink(
shortcut, updated_properties,
base::win::SHORTCUT_UPDATE_EXISTING)) {
++shortcuts_migrated;
}
}
return shortcuts_migrated;
}
base::FilePath GetStartMenuShortcut(const base::FilePath& chrome_exe) {
static const int kFolderIds[] = {
base::DIR_COMMON_START_MENU,
base::DIR_START_MENU,
};
BrowserDistribution* dist = BrowserDistribution::GetDistribution();
const base::string16 shortcut_name(
dist->GetShortcutName(BrowserDistribution::SHORTCUT_CHROME) +
installer::kLnkExt);
base::FilePath programs_folder;
base::FilePath shortcut;
// Check both the common and the per-user Start Menu folders for system-level
// installs.
size_t folder = InstallUtil::IsPerUserInstall(chrome_exe) ? 1 : 0;
for (; folder < arraysize(kFolderIds); ++folder) {
if (!PathService::Get(kFolderIds[folder], &programs_folder)) {
NOTREACHED();
continue;
}
shortcut = programs_folder.Append(shortcut_name);
if (base::PathExists(shortcut))
return shortcut;
}
return base::FilePath();
}
bool DefaultBrowserWorker::InitializeSetAsDefault() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
if (!IsSetAsDefaultAsynchronous())
return false;
// On Windows 10+, there is no official way to prompt the user to set a
// default browser. This is the workaround:
// 1. Unregister the default browser.
// 2. Open "How to make Chrome my default browser" link with openwith.exe.
// 3. Windows will prompt the user with "How would you like to open this?".
// 4. If Chrome is selected, we intercept the attempt to open the URL and
// instead call OnSetAsDefaultAttemptComplete(), passing true to indicate
// success.
// 5. If Chrome is not selected, the url is opened in the selected browser.
// After a certain amount of time, we notify the observer that the
// process failed.
if (!StartupBrowserCreator::SetDefaultBrowserCallback(
base::Bind(&DefaultBrowserWorker::OnSetAsDefaultAttemptComplete, this,
AttemptResult::SUCCESS))) {
// Another worker is currently processing. Note that this will still cause
// SetAsDefaultBrowserAsynchronous() to be invoked in SetAsDefault() but
// the other worker will happily intercept the attempt.
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&DefaultBrowserWorker::OnSetAsDefaultAttemptComplete, this,
AttemptResult::OTHER_WORKER));
return false;
}
// Start the timer.
if (!async_timer_)
async_timer_.reset(new base::OneShotTimer());
std::string value = variations::GetVariationParamValue(
kAsyncSetAsDefaultExperimentName, "TimerDuration");
int seconds = 0;
if (!value.empty())
base::StringToInt(value, &seconds);
if (!seconds)
seconds = 120; // Default value of 2 minutes.
async_timer_->Start(
FROM_HERE, base::TimeDelta::FromSeconds(seconds),
base::Bind(&DefaultBrowserWorker::OnSetAsDefaultAttemptComplete, this,
AttemptResult::FAILURE));
return true;
}
void DefaultBrowserWorker::FinalizeSetAsDefault() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(set_as_default_initialized());
async_timer_.reset();
StartupBrowserCreator::ClearDefaultBrowserCallback();
}
// static
bool DefaultBrowserWorker::SetAsDefaultBrowserAsynchronous() {
DCHECK(IsSetAsDefaultAsynchronous());
// Registers chrome.exe as a browser on Windows to make sure it will be shown
// in the "How would you like to open this?" prompt.
if (!RegisterBrowser())
return false;
if (ShouldResetDefaultBrowser())
ResetDefaultBrowser();
base::CommandLine cmdline(base::FilePath(L"openwith.exe"));
cmdline.AppendArgNative(StartupBrowserCreator::GetDefaultBrowserUrl());
return base::LaunchProcess(cmdline, base::LaunchOptions()).IsValid();
}
} // namespace shell_integration