Chromium Code Reviews| 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 // A handful of resource-like constants related to the Chrome application. | 5 // A handful of resource-like constants related to the Chrome application. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ | 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 133 | 133 |
| 134 #if defined(OS_WIN) | 134 #if defined(OS_WIN) |
| 135 // This is used by the PreRead experiment. | 135 // This is used by the PreRead experiment. |
| 136 extern const char kPreReadEnvironmentVariable[]; | 136 extern const char kPreReadEnvironmentVariable[]; |
| 137 // Used by Metro Chrome to create the profile under a custom subdirectory. | 137 // Used by Metro Chrome to create the profile under a custom subdirectory. |
| 138 extern const wchar_t kMetroChromeUserDataSubDir[]; | 138 extern const wchar_t kMetroChromeUserDataSubDir[]; |
| 139 // Used by Metro Chrome to initiate navigation and search requests. | 139 // Used by Metro Chrome to initiate navigation and search requests. |
| 140 extern const wchar_t kMetroNavigationAndSearchMessage[]; | 140 extern const wchar_t kMetroNavigationAndSearchMessage[]; |
| 141 // Used by Metro Chrome to get information about the current tab. | 141 // Used by Metro Chrome to get information about the current tab. |
| 142 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 142 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
| 143 extern const size_t kMaxAppModelIdLength; | |
|
grt (UTC plus 2)
2012/06/18 19:45:08
move this into util_constants.{cc,h} and make it a
gab
2012/06/18 21:52:43
Moved.
As discussed offline, leaving it as size_t
| |
| 143 #endif | 144 #endif |
| 144 | 145 |
| 145 } // namespace chrome | 146 } // namespace chrome |
| 146 | 147 |
| 147 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 148 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |