| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #ifndef ASH_PUBLIC_CPP_ASH_PREF_NAMES_H_ | 5 #ifndef ASH_PUBLIC_CPP_ASH_PREF_NAMES_H_ |
| 6 #define ASH_PUBLIC_CPP_ASH_PREF_NAMES_H_ | 6 #define ASH_PUBLIC_CPP_ASH_PREF_NAMES_H_ |
| 7 | 7 |
| 8 #include "ash/public/cpp/ash_public_export.h" | 8 #include "ash/public/cpp/ash_public_export.h" |
| 9 | 9 |
| 10 namespace ash { | 10 namespace ash { |
| 11 | 11 |
| 12 namespace prefs { | 12 namespace prefs { |
| 13 | 13 |
| 14 ASH_PUBLIC_EXPORT extern const char kNightLightEnabled[]; | 14 ASH_PUBLIC_EXPORT extern const char kNightLightEnabled[]; |
| 15 ASH_PUBLIC_EXPORT extern const char kNightLightTemperature[]; | 15 ASH_PUBLIC_EXPORT extern const char kNightLightTemperature[]; |
| 16 ASH_PUBLIC_EXPORT extern const char kNightLightScheduleType[]; |
| 17 ASH_PUBLIC_EXPORT extern const char kNightLightCustomStartTime[]; |
| 18 ASH_PUBLIC_EXPORT extern const char kNightLightCustomEndTime[]; |
| 16 | 19 |
| 17 } // namespace prefs | 20 } // namespace prefs |
| 18 | 21 |
| 19 } // namespace ash | 22 } // namespace ash |
| 20 | 23 |
| 21 #endif // ASH_PUBLIC_CPP_ASH_PREF_NAMES_H_ | 24 #endif // ASH_PUBLIC_CPP_ASH_PREF_NAMES_H_ |
| OLD | NEW |