| 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 2291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2302 // by UMA_HISTOGRAM_ENUMERATION. | 2302 // by UMA_HISTOGRAM_ENUMERATION. |
| 2303 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2303 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2304 | 2304 |
| 2305 #if defined(OS_CHROMEOS) | 2305 #if defined(OS_CHROMEOS) |
| 2306 // The RLZ brand code, if enabled. | 2306 // The RLZ brand code, if enabled. |
| 2307 const char kRLZBrand[] = "rlz.brand"; | 2307 const char kRLZBrand[] = "rlz.brand"; |
| 2308 // Whether RLZ pings are disabled. | 2308 // Whether RLZ pings are disabled. |
| 2309 const char kRLZDisabled[] = "rlz.disabled"; | 2309 const char kRLZDisabled[] = "rlz.disabled"; |
| 2310 #endif | 2310 #endif |
| 2311 | 2311 |
| 2312 #if defined(ENABLE_APP_LIST) | |
| 2313 // The directory in user data dir that contains the profile to be used with the | 2312 // The directory in user data dir that contains the profile to be used with the |
| 2314 // app launcher. | 2313 // app launcher. |
| 2315 extern const char kAppListProfile[] = "app_list.profile"; | 2314 extern const char kAppListProfile[] = "app_list.profile"; |
| 2316 #endif | |
| 2317 | 2315 |
| 2318 } // namespace prefs | 2316 } // namespace prefs |
| OLD | NEW |