Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: chrome/common/url_constants.cc

Issue 10226009: Add a learn more link to password generation bubble to point to a help page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make some changes according to review comments. Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698