OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_internal.h" | 5 #include "third_party/zlib/google/zip_internal.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include <algorithm> | 9 #include <algorithm> |
8 | 10 |
9 #include "base/files/file_util.h" | 11 #include "base/files/file_util.h" |
10 #include "base/logging.h" | 12 #include "base/logging.h" |
11 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
12 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 15 #include "build/build_config.h" |
13 | 16 |
14 #if defined(USE_SYSTEM_MINIZIP) | 17 #if defined(USE_SYSTEM_MINIZIP) |
15 #include <minizip/ioapi.h> | 18 #include <minizip/ioapi.h> |
16 #include <minizip/unzip.h> | 19 #include <minizip/unzip.h> |
17 #include <minizip/zip.h> | 20 #include <minizip/zip.h> |
18 #else | 21 #else |
19 #include "third_party/zlib/contrib/minizip/unzip.h" | 22 #include "third_party/zlib/contrib/minizip/unzip.h" |
20 #include "third_party/zlib/contrib/minizip/zip.h" | 23 #include "third_party/zlib/contrib/minizip/zip.h" |
21 #if defined(OS_WIN) | 24 #if defined(OS_WIN) |
22 #include "third_party/zlib/contrib/minizip/iowin32.h" | 25 #include "third_party/zlib/contrib/minizip/iowin32.h" |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 0, // versionMadeBy | 381 0, // versionMadeBy |
379 LANGUAGE_ENCODING_FLAG)) { // flagBase | 382 LANGUAGE_ENCODING_FLAG)) { // flagBase |
380 DLOG(ERROR) << "Could not open zip file entry " << str_path; | 383 DLOG(ERROR) << "Could not open zip file entry " << str_path; |
381 return false; | 384 return false; |
382 } | 385 } |
383 return true; | 386 return true; |
384 } | 387 } |
385 | 388 |
386 } // namespace internal | 389 } // namespace internal |
387 } // namespace zip | 390 } // namespace zip |
OLD | NEW |