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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 const char kSearchSubPage[] = "search"; | 257 const char kSearchSubPage[] = "search"; |
258 const char kSyncSetupSubPage[] = "syncSetup"; | 258 const char kSyncSetupSubPage[] = "syncSetup"; |
259 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; | 259 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; |
260 #if defined(OS_CHROMEOS) | 260 #if defined(OS_CHROMEOS) |
261 const char kInternetOptionsSubPage[] = "internet"; | 261 const char kInternetOptionsSubPage[] = "internet"; |
262 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; | 262 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; |
263 #endif | 263 #endif |
264 | 264 |
265 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/"; | 265 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/"; |
266 | 266 |
| 267 const char kAutoPasswordGenerationLearnMoreURL[] = |
| 268 "https://support.google.com/chrome/?hl=en&p=ui_generate_password"; |
| 269 |
| 270 |
267 const char kPasswordManagerLearnMoreURL[] = | 271 const char kPasswordManagerLearnMoreURL[] = |
268 #if defined(OS_CHROMEOS) | 272 #if defined(OS_CHROMEOS) |
269 "https://support.google.com/chromeos/?p=settings_password"; | 273 "https://support.google.com/chromeos/?p=settings_password"; |
270 #else | 274 #else |
271 "https://support.google.com/chrome/?p=settings_password"; | 275 "https://support.google.com/chrome/?p=settings_password"; |
272 #endif | 276 #endif |
273 | 277 |
274 const char kChromeHelpURL[] = | 278 const char kChromeHelpURL[] = |
275 #if defined(OS_CHROMEOS) | 279 #if defined(OS_CHROMEOS) |
276 #if defined(OFFICIAL_BUILD) | 280 #if defined(OFFICIAL_BUILD) |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 kChromeUIShorthangURL, | 408 kChromeUIShorthangURL, |
405 kChromeUIGpuCleanURL, | 409 kChromeUIGpuCleanURL, |
406 kChromeUIGpuCrashURL, | 410 kChromeUIGpuCrashURL, |
407 kChromeUIGpuHangURL, | 411 kChromeUIGpuHangURL, |
408 }; | 412 }; |
409 int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); | 413 int kNumberOfChromeDebugURLs = static_cast<int>(arraysize(kChromeDebugURLs)); |
410 | 414 |
411 const char kExtensionScheme[] = "chrome-extension"; | 415 const char kExtensionScheme[] = "chrome-extension"; |
412 | 416 |
413 } // namespace chrome | 417 } // namespace chrome |
OLD | NEW |