diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-25 22:34:14 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-25 22:34:14 +0000 |
commit | 9afc14e2f54eaa5f75827542e73b430418f0c412 (patch) | |
tree | 76ef99cbd440b5bcf7711e5360c232053c6cd618 /chrome/service | |
parent | d0e6d8e4a72f1ae7b518c921b5b359fdbb2874d2 (diff) | |
download | chromium_src-9afc14e2f54eaa5f75827542e73b430418f0c412.zip chromium_src-9afc14e2f54eaa5f75827542e73b430418f0c412.tar.gz chromium_src-9afc14e2f54eaa5f75827542e73b430418f0c412.tar.bz2 |
Clean up a few more unused globals.
Found by clang's new -Wunused-const-variable.
BUG=290204
R=akalin@chromium.org, avi@chromium.org, isherman@chromium.org, jamesr@chromium.org, joi@chromium.org, sergeyu@chromium.org, sky@chromium.org, thestig@chromium.org, xhwang@chromium.org
Review URL: https://codereview.chromium.org/24649002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225273 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/cloud_print/print_system_cups.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc index 18c4d4c..1758bd7 100644 --- a/chrome/service/cloud_print/print_system_cups.cc +++ b/chrome/service/cloud_print/print_system_cups.cc @@ -37,10 +37,6 @@ namespace { -// CUPS specific options. -const char kCUPSPrinterInfoOpt[] = "printer-info"; -const char kCUPSPrinterStateOpt[] = "printer-state"; - // Print system config options. const char kCUPSPrintServerURLs[] = "print_server_urls"; const char kCUPSUpdateTimeoutMs[] = "update_timeout_ms"; @@ -52,9 +48,6 @@ const char kCUPSSupportedMimeTipes[] = "supported_mime_types"; const char kCUPSDefaultSupportedTypes[] = "application/pdf,application/postscript,image/jpeg,image/png,image/gif"; -// Default port for IPP print servers. -const int kDefaultIPPServerPort = 631; - // Time interval to check for printer's updates. const int kCheckForPrinterUpdatesMinutes = 5; |