| 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 "build/build_config.h" |
| 5 #include "chrome/common/chrome_constants.h" | 6 #include "chrome/common/chrome_constants.h" |
| 6 #include "chrome/common/chrome_version.h" | 7 #include "chrome/common/chrome_version.h" |
| 7 | 8 |
| 8 #define FPL FILE_PATH_LITERAL | 9 #define FPL FILE_PATH_LITERAL |
| 9 | 10 |
| 10 #if defined(OS_MACOSX) | 11 #if defined(OS_MACOSX) |
| 11 #define CHROMIUM_PRODUCT_STRING "Chromium" | 12 #define CHROMIUM_PRODUCT_STRING "Chromium" |
| 12 #if defined(GOOGLE_CHROME_BUILD) | 13 #if defined(GOOGLE_CHROME_BUILD) |
| 13 #define PRODUCT_STRING "Google Chrome" | 14 #define PRODUCT_STRING "Google Chrome" |
| 14 #elif defined(CHROMIUM_BUILD) | 15 #elif defined(CHROMIUM_BUILD) |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 // user can select for different file types. | 231 // user can select for different file types. |
| 231 // {2676A9A2-D919-4FEE-9187-152100393AB2} | 232 // {2676A9A2-D919-4FEE-9187-152100393AB2} |
| 232 const char kApplicationClientIDStringForAVScanning[] = | 233 const char kApplicationClientIDStringForAVScanning[] = |
| 233 "2676A9A2-D919-4FEE-9187-152100393AB2"; | 234 "2676A9A2-D919-4FEE-9187-152100393AB2"; |
| 234 | 235 |
| 235 const size_t kMaxMetaTagAttributeLength = 2000; | 236 const size_t kMaxMetaTagAttributeLength = 2000; |
| 236 | 237 |
| 237 } // namespace chrome | 238 } // namespace chrome |
| 238 | 239 |
| 239 #undef FPL | 240 #undef FPL |
| OLD | NEW |