| OLD | NEW |
| 1 /* ***** BEGIN LICENSE BLOCK ***** | 1 /* ***** BEGIN LICENSE BLOCK ***** |
| 2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
| 3 * | 3 * |
| 4 * The contents of this file are subject to the Mozilla Public License Version | 4 * The contents of this file are subject to the Mozilla Public License Version |
| 5 * 1.1 (the "License"); you may not use this file except in compliance with | 5 * 1.1 (the "License"); you may not use this file except in compliance with |
| 6 * the License. You may obtain a copy of the License at | 6 * the License. You may obtain a copy of the License at |
| 7 * http://www.mozilla.org/MPL/ | 7 * http://www.mozilla.org/MPL/ |
| 8 * | 8 * |
| 9 * Software distributed under the License is distributed on an "AS IS" basis, | 9 * Software distributed under the License is distributed on an "AS IS" basis, |
| 10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License | 10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 #undef PNG_NO_READ_iCCP | 58 #undef PNG_NO_READ_iCCP |
| 59 #define PNG_NO_READ_oFFs | 59 #define PNG_NO_READ_oFFs |
| 60 #define PNG_NO_READ_pCAL | 60 #define PNG_NO_READ_pCAL |
| 61 #define PNG_NO_READ_pHYs | 61 #define PNG_NO_READ_pHYs |
| 62 #define PNG_NO_READ_sBIT | 62 #define PNG_NO_READ_sBIT |
| 63 #define PNG_NO_READ_sCAL | 63 #define PNG_NO_READ_sCAL |
| 64 #define PNG_NO_READ_sPLT | 64 #define PNG_NO_READ_sPLT |
| 65 #undef PNG_NO_READ_sRGB | 65 #undef PNG_NO_READ_sRGB |
| 66 #define PNG_NO_READ_TEXT | 66 #define PNG_NO_READ_TEXT |
| 67 #define PNG_NO_READ_tIME | 67 #define PNG_NO_READ_tIME |
| 68 #define PNG_NO_READ_UNKNOWN_CHUNKS | 68 #undef PNG_NO_READ_UNKNOWN_CHUNKS |
| 69 #define PNG_NO_READ_USER_CHUNKS | 69 #undef PNG_NO_READ_USER_CHUNKS |
| 70 #define PNG_NO_READ_EMPTY_PLTE | 70 #define PNG_NO_READ_EMPTY_PLTE |
| 71 #define PNG_NO_READ_OPT_PLTE | 71 #define PNG_NO_READ_OPT_PLTE |
| 72 | 72 |
| 73 #ifdef CHROME_PNG_WRITE_SUPPORT | 73 #ifdef CHROME_PNG_WRITE_SUPPORT |
| 74 #define PNG_NO_WRITE_BACKGROUND | 74 #define PNG_NO_WRITE_BACKGROUND |
| 75 #define PNG_NO_WRITE_DITHER | 75 #define PNG_NO_WRITE_DITHER |
| 76 #define PNG_NO_WRITE_INVERT | 76 #define PNG_NO_WRITE_INVERT |
| 77 #define PNG_NO_WRITE_SHIFT | 77 #define PNG_NO_WRITE_SHIFT |
| 78 #define PNG_NO_WRITE_PACK | 78 #define PNG_NO_WRITE_PACK |
| 79 #define PNG_NO_WRITE_PACKSWAP | 79 #define PNG_NO_WRITE_PACKSWAP |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 #define png_write_sig wk_png_write_sig | 480 #define png_write_sig wk_png_write_sig |
| 481 #define png_write_start_row wk_png_write_start_row | 481 #define png_write_start_row wk_png_write_start_row |
| 482 #define png_write_tEXt wk_png_write_tEXt | 482 #define png_write_tEXt wk_png_write_tEXt |
| 483 #define png_write_tIME wk_png_write_tIME | 483 #define png_write_tIME wk_png_write_tIME |
| 484 #define png_write_tRNS wk_png_write_tRNS | 484 #define png_write_tRNS wk_png_write_tRNS |
| 485 #define png_write_zTXt wk_png_write_zTXt | 485 #define png_write_zTXt wk_png_write_zTXt |
| 486 #define png_zalloc wk_png_zalloc | 486 #define png_zalloc wk_png_zalloc |
| 487 #define png_zfree wk_png_zfree | 487 #define png_zfree wk_png_zfree |
| 488 | 488 |
| 489 #endif // CHROME_THIRD_PARTY_LIBPNG_PNGUSR_H__ | 489 #endif // CHROME_THIRD_PARTY_LIBPNG_PNGUSR_H__ |
| OLD | NEW |