[email protected] | 84f62a6 | 2012-02-24 19:13:17 | [diff] [blame] | 1 | // Copyright (c) 2012 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 | |||||
Hans Wennborg | 1790e6b | 2020-04-24 19:10:33 | [diff] [blame] | 5 | #include "base/notreached.h" |
[email protected] | 84f62a6 | 2012-02-24 19:13:17 | [diff] [blame] | 6 | #include "chrome/browser/shell_integration.h" |
7 | |||||
pmonette | 9fa59e88 | 2016-02-10 00:12:19 | [diff] [blame] | 8 | namespace shell_integration { |
9 | |||||
[email protected] | 84f62a6 | 2012-02-24 19:13:17 | [diff] [blame] | 10 | // TODO: crbug/115375 to track implementation for following methods. |
pmonette | 9fa59e88 | 2016-02-10 00:12:19 | [diff] [blame] | 11 | bool SetAsDefaultBrowser() { |
[email protected] | 84f62a6 | 2012-02-24 19:13:17 | [diff] [blame] | 12 | NOTIMPLEMENTED(); |
13 | return false; | ||||
14 | } | ||||
15 | |||||
pmonette | 9fa59e88 | 2016-02-10 00:12:19 | [diff] [blame] | 16 | bool SetAsDefaultProtocolClient(const std::string& protocol) { |
[email protected] | 84f62a6 | 2012-02-24 19:13:17 | [diff] [blame] | 17 | NOTIMPLEMENTED(); |
18 | return false; | ||||
19 | } | ||||
20 | |||||
pmonette | 32a5cfb4 | 2016-04-11 22:04:44 | [diff] [blame] | 21 | DefaultWebClientSetPermission GetDefaultWebClientSetPermission() { |
[email protected] | 84f62a6 | 2012-02-24 19:13:17 | [diff] [blame] | 22 | NOTIMPLEMENTED(); |
pmonette | 034a03d9 | 2015-10-02 21:04:27 | [diff] [blame] | 23 | return SET_DEFAULT_NOT_ALLOWED; |
[email protected] | 84f62a6 | 2012-02-24 19:13:17 | [diff] [blame] | 24 | } |
25 | |||||
Jan Wilken Dörrie | dec9912 | 2021-03-11 18:02:30 | [diff] [blame] | 26 | std::u16string GetApplicationNameForProtocol(const GURL& url) { |
David Bienvenu | 6fcc593 | 2018-04-10 19:11:55 | [diff] [blame] | 27 | NOTIMPLEMENTED(); |
Jan Wilken Dörrie | dec9912 | 2021-03-11 18:02:30 | [diff] [blame] | 28 | return std::u16string(); |
David Bienvenu | 6fcc593 | 2018-04-10 19:11:55 | [diff] [blame] | 29 | } |
30 | |||||
pmonette | 9fa59e88 | 2016-02-10 00:12:19 | [diff] [ |