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

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

Issue 10910064: Extension Commands: Add [Manage Shortcuts] link to the Extension Install Bubble (Views and GTK only) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 const char kPasswordManagerSubPage[] = "passwords"; 291 const char kPasswordManagerSubPage[] = "passwords";
292 const char kSearchEnginesSubPage[] = "searchEngines"; 292 const char kSearchEnginesSubPage[] = "searchEngines";
293 const char kSearchSubPage[] = "search"; 293 const char kSearchSubPage[] = "search";
294 const char kSyncSetupSubPage[] = "syncSetup"; 294 const char kSyncSetupSubPage[] = "syncSetup";
295 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin"; 295 const char kSyncSetupForceLoginSubPage[] = "syncSetup#forceLogin";
296 #if defined(OS_CHROMEOS) 296 #if defined(OS_CHROMEOS)
297 const char kInternetOptionsSubPage[] = "internet"; 297 const char kInternetOptionsSubPage[] = "internet";
298 const char kBluetoothAddDeviceSubPage[] = "bluetooth"; 298 const char kBluetoothAddDeviceSubPage[] = "bluetooth";
299 #endif 299 #endif
300 300
301 // Extension sub pages.
302 const char kExtensionConfigureCommandsSubPage[] = "configureCommands";
303
301 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/"; 304 const char kSyncGoogleDashboardURL[] = "https://www.google.com/dashboard/";
302 305
303 const char kAutoPasswordGenerationLearnMoreURL[] = 306 const char kAutoPasswordGenerationLearnMoreURL[] =
304 "https://support.google.com/chrome/?p=ui_generate_password"; 307 "https://support.google.com/chrome/?p=ui_generate_password";
305 308
306 309
307 const char kPasswordManagerLearnMoreURL[] = 310 const char kPasswordManagerLearnMoreURL[] =
308 #if defined(OS_CHROMEOS) 311 #if defined(OS_CHROMEOS)
309 "https://support.google.com/chromeos/?p=settings_password"; 312 "https://support.google.com/chromeos/?p=settings_password";
310 #else 313 #else
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 kChromeUIGpuCrashURL, 494 kChromeUIGpuCrashURL,
492 kChromeUIGpuHangURL, 495 kChromeUIGpuHangURL,
493 }; 496 };
494 const int kNumberOfChromeDebugURLs = 497 const int kNumberOfChromeDebugURLs =
495 static_cast<int>(arraysize(kChromeDebugURLs)); 498 static_cast<int>(arraysize(kChromeDebugURLs));
496 499
497 const char kExtensionScheme[] = "chrome-extension"; 500 const char kExtensionScheme[] = "chrome-extension";
498 const char kExtensionResourceScheme[] = "chrome-extension-resource"; 501 const char kExtensionResourceScheme[] = "chrome-extension-resource";
499 502
500 } // namespace chrome 503 } // 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