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

Unified Diff: net/base/filter.cc

Issue 24616002: Clean up a few unused globals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win Created 7 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 side-by-side diff with in-line comments
Download patch
Index: net/base/filter.cc
diff --git a/net/base/filter.cc b/net/base/filter.cc
index 36d301426f9c6b387b86b403311af656bf58864e..42313fd9ffe3c3117f91eae7b383b46134ef4b61 100644
--- a/net/base/filter.cc
+++ b/net/base/filter.cc
@@ -21,17 +21,11 @@ const char kSdch[] = "sdch";
// compress and x-compress are currently not supported. If we decide to support
// them, we'll need the same mime type compatibility hack we have for gzip. For
// more information, see Firefox's nsHttpChannel::ProcessNormal.
-const char kCompress[] = "compress";
-const char kXCompress[] = "x-compress";
-const char kIdentity[] = "identity";
-const char kUncompressed[] = "uncompressed";
// Mime types:
const char kApplicationXGzip[] = "application/x-gzip";
const char kApplicationGzip[] = "application/gzip";
const char kApplicationXGunzip[] = "application/x-gunzip";
-const char kApplicationXCompress[] = "application/x-compress";
-const char kApplicationCompress[] = "application/compress";
const char kTextHtml[] = "text/html";
// Buffer size allocated when de-compressing data.

Powered by Google App Engine
This is Rietveld 408576698