OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/shell_integration.h" | 5 #include "chrome/browser/shell_integration.h" |
6 | 6 |
7 namespace shell_integration { | 7 namespace shell_integration { |
8 | 8 |
9 bool SetAsDefaultBrowser() { | 9 bool SetAsDefaultBrowser() { |
10 return false; | 10 return false; |
11 } | 11 } |
12 | 12 |
13 bool SetAsDefaultProtocolClient(const std::string& protocol) { | 13 bool SetAsDefaultProtocolClient(const std::string& protocol) { |
14 return false; | 14 return false; |
15 } | 15 } |
16 | 16 |
17 DefaultWebClientSetPermission CanSetAsDefaultBrowser() { | 17 DefaultWebClientSetPermission GetDefaultWebClientSetPermission() { |
18 return SET_DEFAULT_NOT_ALLOWED; | 18 return SET_DEFAULT_NOT_ALLOWED; |
19 } | 19 } |
20 | 20 |
21 DefaultWebClientState GetDefaultBrowser() { | 21 DefaultWebClientState GetDefaultBrowser() { |
22 return UNKNOWN_DEFAULT; | 22 return UNKNOWN_DEFAULT; |
23 } | 23 } |
24 | 24 |
25 bool IsFirefoxDefaultBrowser() { | 25 bool IsFirefoxDefaultBrowser() { |
26 return false; | 26 return false; |
27 } | 27 } |
28 | 28 |
29 DefaultWebClientState IsDefaultProtocolClient(const std::string& protocol) { | 29 DefaultWebClientState IsDefaultProtocolClient(const std::string& protocol) { |
30 return UNKNOWN_DEFAULT; | 30 return UNKNOWN_DEFAULT; |
31 } | 31 } |
32 | 32 |
33 } // namespace shell_integration | 33 } // namespace shell_integration |
OLD | NEW |