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

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

Issue 2351023002: [CUPS] Add a "Manage..." button in the local destinations section of Print Preview Dialog on Chrome… (Closed)
Patch Set: [CUPS] Add a "Manage..." button in the local destinations section of Print Preview Dialog on Chrome… Created 4 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
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 <algorithm> 7 #include <algorithm>
8 8
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 const char kChromeUIOobeURL[] = "chrome://oobe/"; 119 const char kChromeUIOobeURL[] = "chrome://oobe/";
120 const char kChromeUIOSCreditsURL[] = "chrome://os-credits/"; 120 const char kChromeUIOSCreditsURL[] = "chrome://os-credits/";
121 const char kChromeUIProxySettingsURL[] = "chrome://proxy-settings/"; 121 const char kChromeUIProxySettingsURL[] = "chrome://proxy-settings/";
122 const char kChromeUIScreenlockIconURL[] = "chrome://screenlock-icon/"; 122 const char kChromeUIScreenlockIconURL[] = "chrome://screenlock-icon/";
123 const char kChromeUISetTimeURL[] = "chrome://set-time/"; 123 const char kChromeUISetTimeURL[] = "chrome://set-time/";
124 const char kChromeUISimUnlockURL[] = "chrome://sim-unlock/"; 124 const char kChromeUISimUnlockURL[] = "chrome://sim-unlock/";
125 const char kChromeUISlowURL[] = "chrome://slow/"; 125 const char kChromeUISlowURL[] = "chrome://slow/";
126 const char kChromeUISystemInfoURL[] = "chrome://system/"; 126 const char kChromeUISystemInfoURL[] = "chrome://system/";
127 const char kChromeUITermsOemURL[] = "chrome://terms/oem"; 127 const char kChromeUITermsOemURL[] = "chrome://terms/oem";
128 const char kChromeUIUserImageURL[] = "chrome://userimage/"; 128 const char kChromeUIUserImageURL[] = "chrome://userimage/";
129 const char kChromeUIMdCupsSettingsURL[] = "chrome://md-settings/cupsPrinters";
dpapad 2016/09/20 00:03:23 When MD Settings launches, it will be moved under
129 #endif // defined(OS_CHROMEOS) 130 #endif // defined(OS_CHROMEOS)
130 131
131 #if defined(OS_WIN) 132 #if defined(OS_WIN)
132 const char kChromeUIMetroFlowURL[] = "chrome://make-metro/"; 133 const char kChromeUIMetroFlowURL[] = "chrome://make-metro/";
133 #endif 134 #endif
134 135
135 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) 136 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
136 const char kChromeUITabModalConfirmDialogURL[] = 137 const char kChromeUITabModalConfirmDialogURL[] =
137 "chrome://tab-modal-confirm-dialog/"; 138 "chrome://tab-modal-confirm-dialog/";
138 #endif 139 #endif
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 "https://support.google.com/chrome?p=bluetooth"; 781 "https://support.google.com/chrome?p=bluetooth";
781 782
782 const char kChooserUsbOverviewURL[] = 783 const char kChooserUsbOverviewURL[] =
783 "https://support.google.com/chrome?p=webusb"; 784 "https://support.google.com/chrome?p=webusb";
784 785
785 #if defined(OS_CHROMEOS) 786 #if defined(OS_CHROMEOS)
786 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; 787 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/";
787 #endif 788 #endif
788 789
789 } // namespace chrome 790 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698