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

Side by Side Diff: trunk/src/net/filter/filter.cc

Issue 228763004: Revert 262487 "Add net/base/filename_util.h." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « trunk/src/net/base/net_util_win.cc ('k') | trunk/src/net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "net/filter/filter.h" 5 #include "net/filter/filter.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "net/base/filename_util.h"
10 #include "net/base/io_buffer.h" 9 #include "net/base/io_buffer.h"
11 #include "net/base/mime_util.h" 10 #include "net/base/mime_util.h"
11 #include "net/base/net_util.h"
12 #include "net/filter/gzip_filter.h" 12 #include "net/filter/gzip_filter.h"
13 #include "net/filter/sdch_filter.h" 13 #include "net/filter/sdch_filter.h"
14 #include "url/gurl.h"
15 14
16 namespace { 15 namespace {
17 16
18 // Filter types (using canonical lower case only): 17 // Filter types (using canonical lower case only):
19 const char kDeflate[] = "deflate"; 18 const char kDeflate[] = "deflate";
20 const char kGZip[] = "gzip"; 19 const char kGZip[] = "gzip";
21 const char kXGZip[] = "x-gzip"; 20 const char kXGZip[] = "x-gzip";
22 const char kSdch[] = "sdch"; 21 const char kSdch[] = "sdch";
23 // compress and x-compress are currently not supported. If we decide to support 22 // compress and x-compress are currently not supported. If we decide to support
24 // them, we'll need the same mime type compatibility hack we have for gzip. For 23 // them, we'll need the same mime type compatibility hack we have for gzip. For
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 398
400 void Filter::PushDataIntoNextFilter() { 399 void Filter::PushDataIntoNextFilter() {
401 IOBuffer* next_buffer = next_filter_->stream_buffer(); 400 IOBuffer* next_buffer = next_filter_->stream_buffer();
402 int next_size = next_filter_->stream_buffer_size(); 401 int next_size = next_filter_->stream_buffer_size();
403 last_status_ = ReadFilteredData(next_buffer->data(), &next_size); 402 last_status_ = ReadFilteredData(next_buffer->data(), &next_size);
404 if (FILTER_ERROR != last_status_) 403 if (FILTER_ERROR != last_status_)
405 next_filter_->FlushStreamBuffer(next_size); 404 next_filter_->FlushStreamBuffer(next_size);
406 } 405 }
407 406
408 } // namespace net 407 } // namespace net
OLDNEW
« no previous file with comments | « trunk/src/net/base/net_util_win.cc ('k') | trunk/src/net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698