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

Side by Side Diff: chrome/installer/util/google_chrome_sxs_distribution.cc

Issue 660168: Disable registering, unregistering, and setting default browser... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 // This file defines implementation of GoogleChromeSxSDistribution. 5 // This file defines implementation of GoogleChromeSxSDistribution.
6 6
7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" 7 #include "chrome/installer/util/google_chrome_sxs_distribution.h"
8 8
9 #include "installer_util_strings.h" 9 #include "installer_util_strings.h"
10 10
(...skipping 15 matching lines...) Expand all
26 26
27 std::wstring GoogleChromeSxSDistribution::GetInstallSubDir() { 27 std::wstring GoogleChromeSxSDistribution::GetInstallSubDir() {
28 return GoogleChromeDistribution::GetInstallSubDir().append( 28 return GoogleChromeDistribution::GetInstallSubDir().append(
29 installer_util::kSxSSuffix); 29 installer_util::kSxSSuffix);
30 } 30 }
31 31
32 std::wstring GoogleChromeSxSDistribution::GetUninstallRegPath() { 32 std::wstring GoogleChromeSxSDistribution::GetUninstallRegPath() {
33 return GoogleChromeDistribution::GetUninstallRegPath().append( 33 return GoogleChromeDistribution::GetUninstallRegPath().append(
34 installer_util::kSxSSuffix); 34 installer_util::kSxSSuffix);
35 } 35 }
36
37 bool GoogleChromeSxSDistribution::CanSetAsDefault() {
38 return false;
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698