| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 | 291 |
| 292 void BrowserDistribution::UpdateInstallStatus(bool system_install, | 292 void BrowserDistribution::UpdateInstallStatus(bool system_install, |
| 293 installer::ArchiveType archive_type, | 293 installer::ArchiveType archive_type, |
| 294 installer::InstallStatus install_status) { | 294 installer::InstallStatus install_status) { |
| 295 } | 295 } |
| 296 | 296 |
| 297 bool BrowserDistribution::ShouldSetExperimentLabels() { | 297 bool BrowserDistribution::ShouldSetExperimentLabels() { |
| 298 return false; | 298 return false; |
| 299 } | 299 } |
| 300 | 300 |
| 301 int BrowserDistribution::GetSafeModeHotkey() { |
| 302 return 0; |
| 303 } |
| 304 |
| 301 bool BrowserDistribution::HasUserExperiments() { | 305 bool BrowserDistribution::HasUserExperiments() { |
| 302 return false; | 306 return false; |
| 303 } | 307 } |
| OLD | NEW |