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 implementation of GoogleChromeSxSDistribution. | 5 // This file defines implementation of GoogleChromeSxSDistribution. |
6 | 6 |
7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" | 7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 return true; | 75 return true; |
76 } | 76 } |
77 | 77 |
78 bool GoogleChromeSxSDistribution::HasUserExperiments() { | 78 bool GoogleChromeSxSDistribution::HasUserExperiments() { |
79 return true; | 79 return true; |
80 } | 80 } |
81 | 81 |
82 string16 GoogleChromeSxSDistribution::ChannelName() { | 82 string16 GoogleChromeSxSDistribution::ChannelName() { |
83 return kChannelName; | 83 return kChannelName; |
84 } | 84 } |
| 85 |
| 86 int GoogleChromeSxSDistribution::GetAppListIconIndex() { |
| 87 return 6; |
| 88 } |
OLD | NEW |