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

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

Issue 275953002: Remove HTTP pipelining support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix line endings Created 6 years, 6 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) 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 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 } 229 }
230 230
231 base::string16 BrowserDistribution::GetStateMediumKey() { 231 base::string16 BrowserDistribution::GetStateMediumKey() {
232 return L"Software\\Chromium"; 232 return L"Software\\Chromium";
233 } 233 }
234 234
235 std::string BrowserDistribution::GetNetworkStatsServer() const { 235 std::string BrowserDistribution::GetNetworkStatsServer() const {
236 return ""; 236 return "";
237 } 237 }
238 238
239 std::string BrowserDistribution::GetHttpPipeliningTestServer() const {
240 return "";
241 }
242
243 base::string16 BrowserDistribution::GetDistributionData(HKEY root_key) { 239 base::string16 BrowserDistribution::GetDistributionData(HKEY root_key) {
244 return L""; 240 return L"";
245 } 241 }
246 242
247 base::string16 BrowserDistribution::GetUninstallLinkName() { 243 base::string16 BrowserDistribution::GetUninstallLinkName() {
248 return L"Uninstall Chromium"; 244 return L"Uninstall Chromium";
249 } 245 }
250 246
251 base::string16 BrowserDistribution::GetUninstallRegPath() { 247 base::string16 BrowserDistribution::GetUninstallRegPath() {
252 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chromium"; 248 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Chromium";
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 installer::InstallStatus install_status) { 281 installer::InstallStatus install_status) {
286 } 282 }
287 283
288 bool BrowserDistribution::ShouldSetExperimentLabels() { 284 bool BrowserDistribution::ShouldSetExperimentLabels() {
289 return false; 285 return false;
290 } 286 }
291 287
292 bool BrowserDistribution::HasUserExperiments() { 288 bool BrowserDistribution::HasUserExperiments() {
293 return false; 289 return false;
294 } 290 }
OLDNEW
« no previous file with comments | « chrome/installer/util/browser_distribution.h ('k') | chrome/installer/util/chrome_app_host_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698