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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 | 360 |
361 // Extension sub pages. | 361 // Extension sub pages. |
362 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; | 362 const char kExtensionConfigureCommandsSubPage[] = "configureCommands"; |
363 | 363 |
364 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; | 364 const char kExtensionInvalidRequestURL[] = "chrome-extension://invalid/"; |
365 const char kExtensionResourceInvalidRequestURL[] = | 365 const char kExtensionResourceInvalidRequestURL[] = |
366 "chrome-extension-resource://invalid/"; | 366 "chrome-extension-resource://invalid/"; |
367 | 367 |
368 const char kSyncGoogleDashboardURL[] = | 368 const char kSyncGoogleDashboardURL[] = |
369 "https://www.google.com/settings/chrome/sync/"; | 369 "https://www.google.com/settings/chrome/sync/"; |
370 const char kSyncChromeDashboardURL[] = | |
371 "https://chrome.com/sync/"; | |
372 | 370 |
373 const char kPasswordManagerLearnMoreURL[] = | 371 const char kPasswordManagerLearnMoreURL[] = |
374 #if defined(OS_CHROMEOS) | 372 #if defined(OS_CHROMEOS) |
375 "https://support.google.com/chromeos/?p=settings_password"; | 373 "https://support.google.com/chromeos/?p=settings_password"; |
376 #else | 374 #else |
377 "https://support.google.com/chrome/?p=settings_password"; | 375 "https://support.google.com/chrome/?p=settings_password"; |
378 #endif | 376 #endif |
379 | 377 |
380 const char kPasswordManagerAccountDashboardURL[] = | 378 const char kPasswordManagerAccountDashboardURL[] = |
381 "https://passwords.google.com/settings/passwords"; | 379 "https://passwords.google.com/settings/passwords"; |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; | 735 "https://support.google.com/chrome/?p=ui_mac_32bit_support"; |
738 #else | 736 #else |
739 ""; | 737 ""; |
740 #endif | 738 #endif |
741 #endif | 739 #endif |
742 | 740 |
743 const char kEasyUnlockLearnMoreUrl[] = | 741 const char kEasyUnlockLearnMoreUrl[] = |
744 "https://support.google.com/chromebook/?p=smart_lock"; | 742 "https://support.google.com/chromebook/?p=smart_lock"; |
745 | 743 |
746 } // namespace chrome | 744 } // namespace chrome |
OLD | NEW |