blob: f184f4641398be122be1ae9d75f19df76ae06121 [file] [log] [blame]
[email protected]e7f79872013-09-13 01:39:311// 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.
4
5#include "chrome/browser/shell_integration.h"
6
pmonette9fa59e882016-02-10 00:12:197namespace shell_integration {
8
9bool SetAsDefaultBrowser() {
[email protected]e7f79872013-09-13 01:39:3110 return false;
11}
12
pmonette9fa59e882016-02-10 00:12:1913bool SetAsDefaultProtocolClient(const std::string& protocol) {
[email protected]e7f79872013-09-13 01:39:3114 return false;
15}
16
pmonette32a5cfb42016-04-11 22:04:4417DefaultWebClientSetPermission GetDefaultWebClientSetPermission() {
pmonette034a03d92015-10-02 21:04:2718 return SET_DEFAULT_NOT_ALLOWED;
[email protected]e7f79872013-09-13 01:39:3119}
20
David Bienvenu6fcc5932018-04-10 19:11:5521base::string16 GetApplicationNameForProtocol(const GURL& url) {
22 return base::string16();
23}
24
pmonette9fa59e882016-02-10 00:12:1925DefaultWebClientState GetDefaultBrowser() {
[email protected]e7f79872013-09-13 01:39:3126 return UNKNOWN_DEFAULT;
27}
28
pmonette9fa59e882016-02-10 00:12:1929bool IsFirefoxDefaultBrowser() {
[email protected]e7f79872013-09-13 01:39:3130 return false;
31}
32
pmonette9fa59e882016-02-10 00:12:1933DefaultWebClientState IsDefaultProtocolClient(const std::string& protocol) {
pmonette034a03d92015-10-02 21:04:2734 return UNKNOWN_DEFAULT;
35}
pmonette9fa59e882016-02-10 00:12:1936
37} // namespace shell_integration