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 #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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 388 "https://support.google.com/chrome/?p=e_awsnap"; | 388 "https://support.google.com/chrome/?p=e_awsnap"; |
| 389 #endif | 389 #endif |
| 390 | 390 |
| 391 const char kKillReasonURL[] = | 391 const char kKillReasonURL[] = |
| 392 #if defined(OS_CHROMEOS) | 392 #if defined(OS_CHROMEOS) |
| 393 "https://support.google.com/chromeos/?p=e_deadjim"; | 393 "https://support.google.com/chromeos/?p=e_deadjim"; |
| 394 #else | 394 #else |
| 395 "https://support.google.com/chrome/?p=e_deadjim"; | 395 "https://support.google.com/chrome/?p=e_deadjim"; |
| 396 #endif | 396 #endif |
| 397 | 397 |
| 398 const char kPrivacyWin8DataLearnMoreURL[] = | |
| 399 "https://support.google.com/chrome/?p=win8_directories"; | |
|
Roger Tawa OOO till Jul 10th
2012/08/13 19:40:37
This URL does not seem to take me to a page the de
MAD
2012/08/13 19:57:10
Not up yet...
| |
| 400 | |
| 398 const char kPrivacyLearnMoreURL[] = | 401 const char kPrivacyLearnMoreURL[] = |
| 399 #if defined(OS_CHROMEOS) | 402 #if defined(OS_CHROMEOS) |
| 400 "https://support.google.com/chromeos/?p=settings_privacy"; | 403 "https://support.google.com/chromeos/?p=settings_privacy"; |
| 401 #else | 404 #else |
| 402 "https://support.google.com/chrome/?p=settings_privacy"; | 405 "https://support.google.com/chrome/?p=settings_privacy"; |
| 403 #endif | 406 #endif |
| 404 | 407 |
| 405 const char kSessionRestoreLearnMoreURL[] = | 408 const char kSessionRestoreLearnMoreURL[] = |
| 406 "https://support.google.com/chrome/?p=settings_reopen_pages"; | 409 "https://support.google.com/chrome/?p=settings_reopen_pages"; |
| 407 | 410 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 474 kChromeUIGpuCrashURL, | 477 kChromeUIGpuCrashURL, |
| 475 kChromeUIGpuHangURL, | 478 kChromeUIGpuHangURL, |
| 476 }; | 479 }; |
| 477 const int kNumberOfChromeDebugURLs = | 480 const int kNumberOfChromeDebugURLs = |
| 478 static_cast<int>(arraysize(kChromeDebugURLs)); | 481 static_cast<int>(arraysize(kChromeDebugURLs)); |
| 479 | 482 |
| 480 const char kExtensionScheme[] = "chrome-extension"; | 483 const char kExtensionScheme[] = "chrome-extension"; |
| 481 const char kExtensionResourceScheme[] = "chrome-extension-resource"; | 484 const char kExtensionResourceScheme[] = "chrome-extension-resource"; |
| 482 | 485 |
| 483 } // namespace chrome | 486 } // namespace chrome |
| OLD | NEW |