| 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/common/chrome_constants.h" | 5 #include "chrome/common/chrome_constants.h" |
| 6 | 6 |
| 7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
| 8 | 8 |
| 9 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
| 10 | 10 |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 #else | 124 #else |
| 125 const bool kRecordModeEnabled = false; | 125 const bool kRecordModeEnabled = false; |
| 126 #endif | 126 #endif |
| 127 | 127 |
| 128 const int kHistogramSynchronizerReservedSequenceNumber = 0; | 128 const int kHistogramSynchronizerReservedSequenceNumber = 0; |
| 129 | 129 |
| 130 const char* const kUnknownLanguageCode = "und"; | 130 const char* const kUnknownLanguageCode = "und"; |
| 131 | 131 |
| 132 const int kJavascriptMessageExpectedDelay = 1000; | 132 const int kJavascriptMessageExpectedDelay = 1000; |
| 133 | 133 |
| 134 #ifdef TOUCH_UI |
| 135 const bool kEnableTouchIcon = true; |
| 136 #else |
| 134 const bool kEnableTouchIcon = false; | 137 const bool kEnableTouchIcon = false; |
| 138 #endif |
| 135 | 139 |
| 136 } // namespace chrome | 140 } // namespace chrome |
| 137 | 141 |
| 138 #undef FPL | 142 #undef FPL |
| OLD | NEW |