blob: e1f604ad9f6b02022502169c34edc6b9b6eb534a [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
pmonette9fa59e882016-02-10 00:12:1921DefaultWebClientState GetDefaultBrowser() {
[email protected]e7f79872013-09-13 01:39:3122 return UNKNOWN_DEFAULT;
23}
24
pmonette9fa59e882016-02-10 00:12:1925bool IsFirefoxDefaultBrowser() {
[email protected]e7f79872013-09-13 01:39:3126 return false;
27}
28
pmonette9fa59e882016-02-10 00:12:1929DefaultWebClientState IsDefaultProtocolClient(const std::string& protocol) {
pmonette034a03d92015-10-02 21:04:2730 return UNKNOWN_DEFAULT;
31}
pmonette9fa59e882016-02-10 00:12:1932
33} // namespace shell_integration