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

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

Issue 23258005: Give SxS distribution its own registration GUIDs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove magic key combo from browser_options_handler.cc Created 7 years, 3 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 declares a class that contains various method related to branding. 5 // This file declares a class that contains various method related to branding.
6 6
7 #include "chrome/installer/util/google_chrome_binaries_distribution.h" 7 #include "chrome/installer/util/google_chrome_binaries_distribution.h"
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 string16 ChromiumBinariesDistribution::GetUninstallRegPath() { 84 string16 ChromiumBinariesDistribution::GetUninstallRegPath() {
85 NOTREACHED(); 85 NOTREACHED();
86 return string16(); 86 return string16();
87 } 87 }
88 88
89 string16 ChromiumBinariesDistribution::GetVersionKey() { 89 string16 ChromiumBinariesDistribution::GetVersionKey() {
90 return string16(L"Software\\").append(kChromiumBinariesName); 90 return string16(L"Software\\").append(kChromiumBinariesName);
91 } 91 }
92 92
93 bool ChromiumBinariesDistribution::IsSetAsDefaultSupported() {
94 return false;
95 }
96
93 bool ChromiumBinariesDistribution::CanSetAsDefault() { 97 bool ChromiumBinariesDistribution::CanSetAsDefault() {
94 return false; 98 return false;
95 } 99 }
96 100
97 int ChromiumBinariesDistribution::GetIconIndex(ShortcutType shortcut_type) { 101 int ChromiumBinariesDistribution::GetIconIndex(ShortcutType shortcut_type) {
98 NOTREACHED(); 102 NOTREACHED();
99 return 0; 103 return 0;
100 } 104 }
101 105
102 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) { 106 bool ChromiumBinariesDistribution::GetChromeChannel(string16* channel) {
103 NOTREACHED(); 107 NOTREACHED();
104 return false; 108 return false;
105 } 109 }
106 110
111 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsidString(
112 string16* handler_class_uuid) {
113 return false;
114 }
115
107 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid( 116 bool ChromiumBinariesDistribution::GetCommandExecuteImplClsid(
108 string16* handler_class_uuid) { 117 CLSID* handler_class_uuid) {
109 return false; 118 return false;
110 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698