Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1022)

Side by Side Diff: chrome/browser/shell_integration_chromeos.cc

Issue 1832853003: DefaultBrowserWorker now fully supports opening the settings for Win10 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mac compilation Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698