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

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

Issue 7056031: Collect stats to investigate the viability of UDP (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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) 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 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 std::wstring GoogleChromeDistribution::GetStateMediumKey() { 73 std::wstring GoogleChromeDistribution::GetStateMediumKey() {
74 NOTREACHED(); 74 NOTREACHED();
75 return std::wstring(); 75 return std::wstring();
76 } 76 }
77 77
78 std::wstring GoogleChromeDistribution::GetStatsServerURL() { 78 std::wstring GoogleChromeDistribution::GetStatsServerURL() {
79 NOTREACHED(); 79 NOTREACHED();
80 return std::wstring(); 80 return std::wstring();
81 } 81 }
82 82
83 std::string GoogleChromeDistribution::GetNetworkStatsServer() {
84 NOTREACHED();
85 return std::string();
86 }
87
83 std::wstring GoogleChromeDistribution::GetDistributionData(HKEY root_key) { 88 std::wstring GoogleChromeDistribution::GetDistributionData(HKEY root_key) {
84 NOTREACHED(); 89 NOTREACHED();
85 return std::wstring(); 90 return std::wstring();
86 } 91 }
87 92
88 std::wstring GoogleChromeDistribution::GetUninstallLinkName() { 93 std::wstring GoogleChromeDistribution::GetUninstallLinkName() {
89 NOTREACHED(); 94 NOTREACHED();
90 return std::wstring(); 95 return std::wstring();
91 } 96 }
92 97
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 const DictionaryValue& root, std::wstring* uninstall_metrics_string) { 141 const DictionaryValue& root, std::wstring* uninstall_metrics_string) {
137 NOTREACHED(); 142 NOTREACHED();
138 return false; 143 return false;
139 } 144 }
140 145
141 bool GoogleChromeDistribution::BuildUninstallMetricsString( 146 bool GoogleChromeDistribution::BuildUninstallMetricsString(
142 DictionaryValue* uninstall_metrics_dict, std::wstring* metrics) { 147 DictionaryValue* uninstall_metrics_dict, std::wstring* metrics) {
143 NOTREACHED(); 148 NOTREACHED();
144 return false; 149 return false;
145 } 150 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698