| 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 specific implementation of BrowserDistribution class for | 5 // This file defines specific implementation of BrowserDistribution class for |
| 6 // Google Chrome. | 6 // Google Chrome. |
| 7 | 7 |
| 8 #include "chrome/installer/util/google_chrome_distribution.h" | 8 #include "chrome/installer/util/google_chrome_distribution.h" |
| 9 | 9 |
| 10 #include <windows.h> | 10 #include <windows.h> |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 product_guid()); | 271 product_guid()); |
| 272 } | 272 } |
| 273 | 273 |
| 274 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 274 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { |
| 275 return true; | 275 return true; |
| 276 } | 276 } |
| 277 | 277 |
| 278 bool GoogleChromeDistribution::HasUserExperiments() { | 278 bool GoogleChromeDistribution::HasUserExperiments() { |
| 279 return true; | 279 return true; |
| 280 } | 280 } |
| 281 |
| 282 int GoogleChromeDistribution::GetAppListIconIndex() { |
| 283 return 5; |
| 284 } |
| OLD | NEW |