Allow --force-uninstall for SxS Chrome and disallow --self-destruct.
[chromium-blink-merge.git] / chrome / browser / shell_integration_chromeos.cc
blob03c82a0634307b37a5eef977d2a79525e5e82e5a
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/shell_integration.h"
7 // static
8 ShellIntegration::DefaultWebClientSetPermission
9 ShellIntegration::CanSetAsDefaultBrowser() {
10 return SET_DEFAULT_NOT_ALLOWED;
13 // static
14 bool ShellIntegration::SetAsDefaultBrowser() {
15 return false;
18 // static
19 bool ShellIntegration::SetAsDefaultProtocolClient(const std::string& protocol) {
20 return false;
23 // static
24 ShellIntegration::DefaultWebClientState ShellIntegration::GetDefaultBrowser() {
25 return UNKNOWN_DEFAULT;
28 // static
29 ShellIntegration::DefaultWebClientState
30 ShellIntegration::IsDefaultProtocolClient(const std::string& protocol) {
31 return UNKNOWN_DEFAULT;
34 // static
35 bool ShellIntegration::IsFirefoxDefaultBrowser() {
36 return false;