| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 std::wstring BrowserDistribution::GetVersionKey() { | 81 std::wstring BrowserDistribution::GetVersionKey() { |
| 82 return L"Software\\Chromium"; | 82 return L"Software\\Chromium"; |
| 83 } | 83 } |
| 84 | 84 |
| 85 void BrowserDistribution::UpdateDiffInstallStatus(bool system_install, | 85 void BrowserDistribution::UpdateDiffInstallStatus(bool system_install, |
| 86 bool incremental_install, installer_util::InstallStatus install_status) { | 86 bool incremental_install, installer_util::InstallStatus install_status) { |
| 87 } | 87 } |
| 88 | 88 |
| 89 void BrowserDistribution::LaunchUserExperiment( | 89 void BrowserDistribution::LaunchUserExperiment( |
| 90 installer_util::InstallStatus status, const installer::Version& version, | 90 installer_util::InstallStatus status, const installer::Version& version, |
| 91 bool system_install, int options) { | 91 bool system_install) { |
| 92 } | 92 } |
| 93 | 93 |
| 94 | 94 |
| 95 void BrowserDistribution::InactiveUserToastExperiment() { | 95 void BrowserDistribution::InactiveUserToastExperiment() { |
| 96 } | 96 } |
| OLD | NEW |