| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/extensions/default_apps_trial.h" | 5 #include "chrome/browser/extensions/default_apps_trial.h" |
| 6 | 6 |
| 7 const char kDefaultAppsTrial_Name[] = "DefaultAppsExperiment"; | 7 const char kDefaultAppsTrialName[] = "DefaultAppsExperiment"; |
| 8 const char kDefaultAppsTrial_NoAppsGroup[] = "NoDefaultApps"; | 8 const char kDefaultAppsTrialNoAppsGroup[] = "NoDefaultApps"; |
| 9 const char kDefaultAppsTrial_WithAppsGroup[] = "WithDefaultApps"; | 9 const char kDefaultAppsTrialWithAppsGroup[] = "WithDefaultApps"; |
| OLD | NEW |