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

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

Issue 11280067: Refactor SetOmahaExperimentLabel out of gcpai and into install_util. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase; grt comments; unit tests Created 7 years, 11 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
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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 const DictionaryValue& root, string16* uninstall_metrics_string) { 168 const DictionaryValue& root, string16* uninstall_metrics_string) {
169 NOTREACHED(); 169 NOTREACHED();
170 return false; 170 return false;
171 } 171 }
172 172
173 bool GoogleChromeDistribution::BuildUninstallMetricsString( 173 bool GoogleChromeDistribution::BuildUninstallMetricsString(
174 const DictionaryValue* uninstall_metrics_dict, string16* metrics) { 174 const DictionaryValue* uninstall_metrics_dict, string16* metrics) {
175 NOTREACHED(); 175 NOTREACHED();
176 return false; 176 return false;
177 } 177 }
178
179 bool GoogleChromeDistribution::ShouldSetExperimentLabels() {
180 NOTREACHED();
181 return false;
182 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698