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 "chrome/common/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
6 | 6 |
7 #include "googleurl/src/url_util.h" | 7 #include "googleurl/src/url_util.h" |
8 | 8 |
9 namespace chrome { | 9 namespace chrome { |
10 | 10 |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 #if defined(OS_CHROMEOS) | 286 #if defined(OS_CHROMEOS) |
287 #if defined(OFFICIAL_BUILD) | 287 #if defined(OFFICIAL_BUILD) |
288 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; | 288 "chrome-extension://honijodknafkokifofgiaalefdiedpko/main.html"; |
289 #else | 289 #else |
290 "https://support.google.com/chromeos/?p=help"; | 290 "https://support.google.com/chromeos/?p=help"; |
291 #endif // defined(OFFICIAL_BUILD | 291 #endif // defined(OFFICIAL_BUILD |
292 #else | 292 #else |
293 "https://support.google.com/chrome/?p=help"; | 293 "https://support.google.com/chrome/?p=help"; |
294 #endif | 294 #endif |
295 | 295 |
| 296 const char kChromeSyncLearnMoreURL[] = |
| 297 #if defined(OS_CHROMEOS) |
| 298 "http://support.google.com/chromeos/bin/answer.py?hl=en&answer=165139"; |
| 299 #else |
| 300 "http://support.google.com/chrome/bin/answer.py?hl=en&answer=165139"; |
| 301 #endif |
| 302 |
296 const char kSettingsSearchHelpURL[] = | 303 const char kSettingsSearchHelpURL[] = |
297 #if defined(OS_CHROMEOS) | 304 #if defined(OS_CHROMEOS) |
298 "https://support.google.com/chromeos/?p=settings_search_help"; | 305 "https://support.google.com/chromeos/?p=settings_search_help"; |
299 #else | 306 #else |
300 "https://support.google.com/chrome/?p=settings_search_help"; | 307 "https://support.google.com/chrome/?p=settings_search_help"; |
301 #endif | 308 #endif |
302 | 309 |
303 const char kAboutGoogleTranslateURL[] = | 310 const char kAboutGoogleTranslateURL[] = |
304 #if defined(OS_CHROMEOS) | 311 #if defined(OS_CHROMEOS) |
305 "https://support.google.com/chromeos/?p=ib_translation_bar"; | 312 "https://support.google.com/chromeos/?p=ib_translation_bar"; |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 kChromeUIGpuCleanURL, | 429 kChromeUIGpuCleanURL, |
423 kChromeUIGpuCrashURL, | 430 kChromeUIGpuCrashURL, |
424 kChromeUIGpuHangURL, | 431 kChromeUIGpuHangURL, |
425 }; | 432 }; |
426 int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); | 433 int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); |
427 | 434 |
428 const char kExtensionScheme[] = "chrome-extension"; | 435 const char kExtensionScheme[] = "chrome-extension"; |
429 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 436 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
430 | 437 |
431 } // namespace chrome | 438 } // namespace chrome |
OLD | NEW |