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

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

Issue 2464403003: [CUPS] Implement the "Printers" section in chrome://settings. (Closed)
Patch Set: . Created 4 years, 1 month 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 const char kChromeUIOobeURL[] = "chrome://oobe/"; 122 const char kChromeUIOobeURL[] = "chrome://oobe/";
123 const char kChromeUIOSCreditsURL[] = "chrome://os-credits/"; 123 const char kChromeUIOSCreditsURL[] = "chrome://os-credits/";
124 const char kChromeUIProxySettingsURL[] = "chrome://proxy-settings/"; 124 const char kChromeUIProxySettingsURL[] = "chrome://proxy-settings/";
125 const char kChromeUIScreenlockIconURL[] = "chrome://screenlock-icon/"; 125 const char kChromeUIScreenlockIconURL[] = "chrome://screenlock-icon/";
126 const char kChromeUISetTimeURL[] = "chrome://set-time/"; 126 const char kChromeUISetTimeURL[] = "chrome://set-time/";
127 const char kChromeUISimUnlockURL[] = "chrome://sim-unlock/"; 127 const char kChromeUISimUnlockURL[] = "chrome://sim-unlock/";
128 const char kChromeUISlowURL[] = "chrome://slow/"; 128 const char kChromeUISlowURL[] = "chrome://slow/";
129 const char kChromeUISystemInfoURL[] = "chrome://system/"; 129 const char kChromeUISystemInfoURL[] = "chrome://system/";
130 const char kChromeUITermsOemURL[] = "chrome://terms/oem"; 130 const char kChromeUITermsOemURL[] = "chrome://terms/oem";
131 const char kChromeUIUserImageURL[] = "chrome://userimage/"; 131 const char kChromeUIUserImageURL[] = "chrome://userimage/";
132 const char kChromeUIMdCupsSettingsURL[] = "chrome://settings/cupsPrinters"; 132 // TODO(xdai): Change it to chrome://settings/cupsPrinters after M56 since MD
133 // settings is going to launch in Chrome OS in M57.
134 const char kChromeUIMdCupsSettingsURL[] = "chrome://md-settings/cupsPrinters";
133 #endif // defined(OS_CHROMEOS) 135 #endif // defined(OS_CHROMEOS)
134 136
135 #if defined(OS_WIN) 137 #if defined(OS_WIN)
136 const char kChromeUIMetroFlowURL[] = "chrome://make-metro/"; 138 const char kChromeUIMetroFlowURL[] = "chrome://make-metro/";
137 #endif 139 #endif
138 140
139 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) 141 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
140 const char kChromeUITabModalConfirmDialogURL[] = 142 const char kChromeUITabModalConfirmDialogURL[] =
141 "chrome://tab-modal-confirm-dialog/"; 143 "chrome://tab-modal-confirm-dialog/";
142 #endif 144 #endif
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 #endif 802 #endif
801 803
802 const char kChooserUsbOverviewURL[] = 804 const char kChooserUsbOverviewURL[] =
803 "https://support.google.com/chrome?p=webusb"; 805 "https://support.google.com/chrome?p=webusb";
804 806
805 #if defined(OS_CHROMEOS) 807 #if defined(OS_CHROMEOS)
806 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/"; 808 const char kEolNotificationURL[] = "https://www.google.com/chromebook/older/";
807 #endif 809 #endif
808 810
809 } // namespace chrome 811 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698