OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |