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

Side by Side Diff: chrome/installer/util/google_chrome_distribution_dummy.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 dummy implementation of several functions from the 5 // This file defines dummy implementation of several functions from the
6 // BrowserDistribution class for Google Chrome. These functions allow 64-bit 6 // BrowserDistribution class for Google Chrome. These functions allow 64-bit
7 // Windows Chrome binary to build successfully. Since this binary is only used 7 // Windows Chrome binary to build successfully. Since this binary is only used
8 // for Native Client support, most of the install/uninstall functionality is not 8 // for Native Client support, most of the install/uninstall functionality is not
9 // necessary there. 9 // necessary there.
10 10
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 } 80 }
81 81
82 base::string16 GoogleChromeDistribution::GetStateMediumKey() { 82 base::string16 GoogleChromeDistribution::GetStateMediumKey() {
83 return base::string16(); 83 return base::string16();
84 } 84 }
85 85
86 std::string GoogleChromeDistribution::GetNetworkStatsServer() const { 86 std::string GoogleChromeDistribution::GetNetworkStatsServer() const {
87 return std::string(); 87 return std::string();
88 } 88 }
89 89
90 std::string GoogleChromeDistribution::GetHttpPipeliningTestServer() const {
91 return std::string();
92 }
93
94 base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { 90 base::string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) {
95 return base::string16(); 91 return base::string16();
96 } 92 }
97 93
98 base::string16 GoogleChromeDistribution::GetUninstallLinkName() { 94 base::string16 GoogleChromeDistribution::GetUninstallLinkName() {
99 return base::string16(); 95 return base::string16();
100 } 96 }
101 97
102 base::string16 GoogleChromeDistribution::GetUninstallRegPath() { 98 base::string16 GoogleChromeDistribution::GetUninstallRegPath() {
103 return base::string16(); 99 return base::string16();
(...skipping 21 matching lines...) Expand all
125 installer::InstallStatus install_status) { 121 installer::InstallStatus install_status) {
126 } 122 }
127 123
128 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { 124 bool GoogleChromeDistribution::ShouldSetExperimentLabels() {
129 return false; 125 return false;
130 } 126 }
131 127
132 bool GoogleChromeDistribution::HasUserExperiments() { 128 bool GoogleChromeDistribution::HasUserExperiments() {
133 return false; 129 return false;
134 } 130 }
OLDNEW
« no previous file with comments | « chrome/installer/util/google_chrome_distribution.cc ('k') | chrome/test/data/http_pipelining/alphabet.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698