| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 } | 180 } |
| 181 | 181 |
| 182 std::wstring BrowserDistribution::GetStateMediumKey() { | 182 std::wstring BrowserDistribution::GetStateMediumKey() { |
| 183 return L"Software\\Chromium"; | 183 return L"Software\\Chromium"; |
| 184 } | 184 } |
| 185 | 185 |
| 186 std::wstring BrowserDistribution::GetStatsServerURL() { | 186 std::wstring BrowserDistribution::GetStatsServerURL() { |
| 187 return L""; | 187 return L""; |
| 188 } | 188 } |
| 189 | 189 |
| 190 std::string BrowserDistribution::GetNetworkStatsServer() { |
| 191 return ""; |
| 192 } |
| 193 |
| 190 std::wstring BrowserDistribution::GetDistributionData(HKEY root_key) { | 194 std::wstring BrowserDistribution::GetDistributionData(HKEY root_key) { |
| 191 return L""; | 195 return L""; |
| 192 } | 196 } |
| 193 | 197 |
| 194 std::wstring BrowserDistribution::GetUninstallLinkName() { | 198 std::wstring BrowserDistribution::GetUninstallLinkName() { |
| 195 return L"Uninstall Chromium"; | 199 return L"Uninstall Chromium"; |
| 196 } | 200 } |
| 197 | 201 |
| 198 std::wstring BrowserDistribution::GetUninstallRegPath() { | 202 std::wstring BrowserDistribution::GetUninstallRegPath() { |
| 199 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chromium"; | 203 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chromium"; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 230 const Version& version, const installer::Product& installation, | 234 const Version& version, const installer::Product& installation, |
| 231 bool system_level) { | 235 bool system_level) { |
| 232 } | 236 } |
| 233 | 237 |
| 234 | 238 |
| 235 void BrowserDistribution::InactiveUserToastExperiment(int flavor, | 239 void BrowserDistribution::InactiveUserToastExperiment(int flavor, |
| 236 const std::wstring& experiment_group, | 240 const std::wstring& experiment_group, |
| 237 const installer::Product& installation, | 241 const installer::Product& installation, |
| 238 const FilePath& application_path) { | 242 const FilePath& application_path) { |
| 239 } | 243 } |
| OLD | NEW |