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

Side by Side Diff: chrome/installer/util/browser_distribution.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 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 UserExperiment* experiment, int flavor) { 259 UserExperiment* experiment, int flavor) {
260 return false; 260 return false;
261 } 261 }
262 262
263 void BrowserDistribution::LaunchUserExperiment( 263 void BrowserDistribution::LaunchUserExperiment(
264 const FilePath& setup_path, installer::InstallStatus status, 264 const FilePath& setup_path, installer::InstallStatus status,
265 const Version& version, const installer::Product& product, 265 const Version& version, const installer::Product& product,
266 bool system_level) { 266 bool system_level) {
267 } 267 }
268 268
269 bool BrowserDistribution::ShouldSetExperimentLabels() {
270 return false;
271 }
269 272
270 void BrowserDistribution::InactiveUserToastExperiment(int flavor, 273 void BrowserDistribution::InactiveUserToastExperiment(int flavor,
271 const string16& experiment_group, 274 const string16& experiment_group,
272 const installer::Product& installation, 275 const installer::Product& installation,
273 const FilePath& application_path) { 276 const FilePath& application_path) {
274 } 277 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698