| 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 "ui/base/ui_base_switches.h" | 5 #include "ui/base/ui_base_switches.h" |
| 6 | 6 |
| 7 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // The language file that we want to try to open. Of the form | 9 // The language file that we want to try to open. Of the form |
| 10 // language[-country] where language is the 2 letter code from ISO-639. | 10 // language[-country] where language is the 2 letter code from ISO-639. |
| 11 const char kLang[] = "lang"; | 11 const char kLang[] = "lang"; |
| 12 | 12 |
| 13 // Load the locale resources from the given path. When running on Mac/Unix the | 13 // Load the locale resources from the given path. When running on Mac/Unix the |
| 14 // path should point to a locale.pak file. | 14 // path should point to a locale.pak file. |
| 15 const char kLocalePak[] = "locale_pak"; | 15 const char kLocalePak[] = "locale_pak"; |
| 16 | 16 |
| 17 #if defined(OS_MACOSX) |
| 18 const char kDisableCompositedCoreAnimationPlugins[] = |
| 19 "disable-composited-core-animation-plugins"; |
| 20 #endif |
| 21 |
| 17 } // namespace switches | 22 } // namespace switches |
| OLD | NEW |