| 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 <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 // Extension sub pages. | 356 // Extension sub pages. |
| 357 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 357 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
| 358 | 358 |
| 359 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; | 359 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
| 360 const char kExtensionResourceInvalidRequestURL[] = | 360 const char kExtensionResourceInvalidRequestURL[] = |
| 361 "chrome-extension-resource://invalid/"; | 361 "chrome-extension-resource://invalid/"; |
| 362 | 362 |
| 363 const char kSyncGoogleDashboardURL[] = | 363 const char kSyncGoogleDashboardURL[] = |
| 364 "https://www.google.com/settings/chrome/sync/"; | 364 "https://www.google.com/settings/chrome/sync/"; |
| 365 | 365 |
| 366 const char kAutoPasswordGenerationLearnMoreURL[] = | |
| 367 "https://support.google.com/chrome/?p=ui_generate_password"; | |
| 368 | |
| 369 const char kPasswordManagerLearnMoreURL[] = | 366 const char kPasswordManagerLearnMoreURL[] = |
| 370 #if defined(OS_CHROMEOS) | 367 #if defined(OS_CHROMEOS) |
| 371 "https://support.google.com/chromeos/?p=settings_password"; | 368 "https://support.google.com/chromeos/?p=settings_password"; |
| 372 #else | 369 #else |
| 373 "https://support.google.com/chrome/?p=settings_password"; | 370 "https://support.google.com/chrome/?p=settings_password"; |
| 374 #endif | 371 #endif |
| 375 | 372 |
| 376 const char kPasswordManagerAccountDashboardURL[] = | 373 const char kPasswordManagerAccountDashboardURL[] = |
| 377 "https://passwords.google.com/settings/passwords"; | 374 "https://passwords.google.com/settings/passwords"; |
| 378 | 375 |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 723 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
| 727 #else | 724 #else |
| 728 ""; | 725 ""; |
| 729 #endif | 726 #endif |
| 730 #endif | 727 #endif |
| 731 | 728 |
| 732 const char kEasyUnlockLearnMoreUrl[] = | 729 const char kEasyUnlockLearnMoreUrl[] = |
| 733 "https://support.google.com/chromebook/?p=smart_lock"; | 730 "https://support.google.com/chromebook/?p=smart_lock"; |
| 734 | 731 |
| 735 } // namespace chrome | 732 } // namespace chrome |
| OLD | NEW |