OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 a class that contains various method related to branding. | 5 // This file defines a class that contains various method related to branding. |
6 // It provides only default implementations of these methods. Usually to add | 6 // It provides only default implementations of these methods. Usually to add |
7 // specific branding, we will need to extend this class with a custom | 7 // specific branding, we will need to extend this class with a custom |
8 // implementation. | 8 // implementation. |
9 | 9 |
10 #include "chrome/installer/util/browser_distribution.h" | 10 #include "chrome/installer/util/browser_distribution.h" |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 } | 127 } |
128 | 128 |
129 std::wstring BrowserDistribution::GetUninstallRegPath() { | 129 std::wstring BrowserDistribution::GetUninstallRegPath() { |
130 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chromium"; | 130 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chromium"; |
131 } | 131 } |
132 | 132 |
133 std::wstring BrowserDistribution::GetVersionKey() { | 133 std::wstring BrowserDistribution::GetVersionKey() { |
134 return L"Software\\Chromium"; | 134 return L"Software\\Chromium"; |
135 } | 135 } |
136 | 136 |
| 137 bool BrowserDistribution::CanSetAsDefault() { |
| 138 return true; |
| 139 } |
| 140 |
137 void BrowserDistribution::UpdateDiffInstallStatus(bool system_install, | 141 void BrowserDistribution::UpdateDiffInstallStatus(bool system_install, |
138 bool incremental_install, installer_util::InstallStatus install_status) { | 142 bool incremental_install, installer_util::InstallStatus install_status) { |
139 } | 143 } |
140 | 144 |
141 void BrowserDistribution::LaunchUserExperiment( | 145 void BrowserDistribution::LaunchUserExperiment( |
142 installer_util::InstallStatus status, const installer::Version& version, | 146 installer_util::InstallStatus status, const installer::Version& version, |
143 bool system_install) { | 147 bool system_install) { |
144 } | 148 } |
145 | 149 |
146 | 150 |
147 void BrowserDistribution::InactiveUserToastExperiment(int flavor, | 151 void BrowserDistribution::InactiveUserToastExperiment(int flavor, |
148 bool system_install) { | 152 bool system_install) { |
149 } | 153 } |
OLD | NEW |