OLD | NEW |
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 "third_party/zlib/google/zip_reader.h" | 5 #include "third_party/zlib/google/zip_reader.h" |
6 | 6 |
7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "net/base/file_stream.h" | 11 #include "net/base/file_stream.h" |
12 #include "third_party/zlib/google/zip_internal.h" | 12 #include "third_party/zlib/google/zip_internal.h" |
13 | 13 |
14 #if defined(USE_SYSTEM_MINIZIP) | 14 #if defined(USE_SYSTEM_MINIZIP) |
15 #include <minizip/unzip.h> | 15 #include <minizip/unzip.h> |
16 #else | 16 #else |
17 #include "third_party/zlib/contrib/minizip/unzip.h" | 17 #include "third_party/zlib/contrib/minizip/unzip.h" |
18 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
19 #include "third_party/zlib/contrib/minizip/iowin32.h" | 19 #include "third_party/zlib/contrib/minizip/iowin32.h" |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 } | 301 } |
302 | 302 |
303 void ZipReader::Reset() { | 303 void ZipReader::Reset() { |
304 zip_file_ = NULL; | 304 zip_file_ = NULL; |
305 num_entries_ = 0; | 305 num_entries_ = 0; |
306 reached_end_ = false; | 306 reached_end_ = false; |
307 current_entry_info_.reset(); | 307 current_entry_info_.reset(); |
308 } | 308 } |
309 | 309 |
310 } // namespace zip | 310 } // namespace zip |
OLD | NEW |