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

Side by Side Diff: url/url_constants.h

Issue 2250843002: [CUPS] WebUI handler for CUPS printing: Retrieve the printer list from user preference. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address skau@ and dbeam@'s comments. Created 4 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef URL_URL_CONSTANTS_H_ 5 #ifndef URL_URL_CONSTANTS_H_
6 #define URL_URL_CONSTANTS_H_ 6 #define URL_URL_CONSTANTS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "url/url_export.h" 10 #include "url/url_export.h"
(...skipping 11 matching lines...) Expand all
22 URL_EXPORT extern const char kFileScheme[]; 22 URL_EXPORT extern const char kFileScheme[];
23 URL_EXPORT extern const char kFileSystemScheme[]; 23 URL_EXPORT extern const char kFileSystemScheme[];
24 URL_EXPORT extern const char kFtpScheme[]; 24 URL_EXPORT extern const char kFtpScheme[];
25 URL_EXPORT extern const char kGopherScheme[]; 25 URL_EXPORT extern const char kGopherScheme[];
26 URL_EXPORT extern const char kHttpScheme[]; 26 URL_EXPORT extern const char kHttpScheme[];
27 URL_EXPORT extern const char kHttpsScheme[]; 27 URL_EXPORT extern const char kHttpsScheme[];
28 URL_EXPORT extern const char kJavaScriptScheme[]; 28 URL_EXPORT extern const char kJavaScriptScheme[];
29 URL_EXPORT extern const char kMailToScheme[]; 29 URL_EXPORT extern const char kMailToScheme[];
30 URL_EXPORT extern const char kWsScheme[]; 30 URL_EXPORT extern const char kWsScheme[];
31 URL_EXPORT extern const char kWssScheme[]; 31 URL_EXPORT extern const char kWssScheme[];
32 // Below are the schemes for the network printers. For more info, see
33 // https://www.cups.org/doc/network.html#PROTOCOLS.
34 URL_EXPORT extern const char kPrinterIppScheme[];
35 URL_EXPORT extern const char kPrinterIppsScheme[];
36 URL_EXPORT extern const char kPrinterLpdScheme[];
37 URL_EXPORT extern const char kPrinterSocketScheme[];
32 38
33 // Used to separate a standard scheme and the hostname: "://". 39 // Used to separate a standard scheme and the hostname: "://".
34 URL_EXPORT extern const char kStandardSchemeSeparator[]; 40 URL_EXPORT extern const char kStandardSchemeSeparator[];
35 41
36 URL_EXPORT extern const size_t kMaxURLChars; 42 URL_EXPORT extern const size_t kMaxURLChars;
37 43
38 } // namespace url 44 } // namespace url
39 45
40 #endif // URL_URL_CONSTANTS_H_ 46 #endif // URL_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698