From 7472392b2a2ea1ec6ce0cf12a77db3d6ec090df4 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Sun, 16 Jul 2017 13:16:04 +0200 Subject: [PATCH 01/16] libpng: disabled neon --- libpng/.footprint | 33 + libpng/.md5sum | 2 + libpng/Pkgfile | 20 + libpng/libpng-apng.patch | 1633 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 1688 insertions(+) create mode 100644 libpng/.footprint create mode 100644 libpng/.md5sum create mode 100644 libpng/Pkgfile create mode 100644 libpng/libpng-apng.patch diff --git a/libpng/.footprint b/libpng/.footprint new file mode 100644 index 0000000..8e4996e --- /dev/null +++ b/libpng/.footprint @@ -0,0 +1,33 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +lrwxrwxrwx root/root usr/bin/libpng-config -> libpng16-config +-rwxr-xr-x root/root usr/bin/libpng16-config +-rwxr-xr-x root/root usr/bin/png-fix-itxt +-rwxr-xr-x root/root usr/bin/pngfix +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/libpng16/ +-rw-r--r-- root/root usr/include/libpng16/png.h +-rw-r--r-- root/root usr/include/libpng16/pngconf.h +-rw-r--r-- root/root usr/include/libpng16/pnglibconf.h +lrwxrwxrwx root/root usr/include/png.h -> libpng16/png.h +lrwxrwxrwx root/root usr/include/pngconf.h -> libpng16/pngconf.h +lrwxrwxrwx root/root usr/include/pnglibconf.h -> libpng16/pnglibconf.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libpng.a -> libpng16.a +lrwxrwxrwx root/root usr/lib/libpng.la -> libpng16.la +lrwxrwxrwx root/root usr/lib/libpng.so -> libpng16.so +-rw-r--r-- root/root usr/lib/libpng16.a +-rwxr-xr-x root/root usr/lib/libpng16.la +lrwxrwxrwx root/root usr/lib/libpng16.so -> libpng16.so.16.30.0 +lrwxrwxrwx root/root usr/lib/libpng16.so.16 -> libpng16.so.16.30.0 +-rwxr-xr-x root/root usr/lib/libpng16.so.16.30.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +lrwxrwxrwx root/root usr/lib/pkgconfig/libpng.pc -> libpng16.pc +-rw-r--r-- root/root usr/lib/pkgconfig/libpng16.pc +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man3/ +-rw-r--r-- root/root usr/share/man/man3/libpng.3.gz +-rw-r--r-- root/root usr/share/man/man3/libpngpf.3.gz +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/png.5.gz diff --git a/libpng/.md5sum b/libpng/.md5sum new file mode 100644 index 0000000..f49493f --- /dev/null +++ b/libpng/.md5sum @@ -0,0 +1,2 @@ +88a729d47eaf880d61a0ef90f4bd5e8f libpng-1.6.30.tar.xz +6b5a7e5006cb2878a5e02253b1232f01 libpng-apng.patch diff --git a/libpng/Pkgfile b/libpng/Pkgfile new file mode 100644 index 0000000..4e54ffa --- /dev/null +++ b/libpng/Pkgfile @@ -0,0 +1,20 @@ +# Description: Library of PNG support functions with APNG support. +# URL: http://www.libpng.org +# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu +# Depends on: zlib + +name=libpng +version=1.6.30 +release=1 +source=(http://download.sourceforge.net/$name/$name-$version.tar.xz \ + $name-apng.patch) + +build() { + cd $name-$version + patch -p0 -i $SRC/$name-apng.patch + ./configure --prefix=/usr --disable-arm-neon + + make + make DESTDIR=$PKG install +} diff --git a/libpng/libpng-apng.patch b/libpng/libpng-apng.patch new file mode 100644 index 0000000..1661b21 --- /dev/null +++ b/libpng/libpng-apng.patch @@ -0,0 +1,1633 @@ +Index: LICENSE +=================================================================== +--- LICENSE ++++ LICENSE +@@ -8,6 +8,12 @@ + If you modify libpng you may insert additional notices immediately following + this sentence. + ++This modified version of libpng code adds animated PNG support and is ++released under the libpng license described below. The modifications are ++Copyright (c) 2006-2007 Andrew Smith, Copyright (c) 2008-2017 Max Stepin, ++and are delimited by "#ifdef PNG_APNG_SUPPORTED / #endif" directives ++surrounding them in the modified libpng source files. ++ + This code is released under the libpng license. + + libpng versions 1.0.7, July 1, 2000 through 1.6.30, June 28, 2017 are +Index: pngread.c +=================================================================== +--- pngread.c ++++ pngread.c +@@ -161,6 +161,9 @@ + + else if (chunk_name == png_IDAT) + { ++#ifdef PNG_READ_APNG_SUPPORTED ++ png_have_info(png_ptr, info_ptr); ++#endif + png_ptr->idat_size = length; + break; + } +@@ -250,6 +253,17 @@ + png_handle_iTXt(png_ptr, info_ptr, length); + #endif + ++#ifdef PNG_READ_APNG_SUPPORTED ++ else if (chunk_name == png_acTL) ++ png_handle_acTL(png_ptr, info_ptr, length); ++ ++ else if (chunk_name == png_fcTL) ++ png_handle_fcTL(png_ptr, info_ptr, length); ++ ++ else if (chunk_name == png_fdAT) ++ png_handle_fdAT(png_ptr, info_ptr, length); ++#endif ++ + else + png_handle_unknown(png_ptr, info_ptr, length, + PNG_HANDLE_CHUNK_AS_DEFAULT); +@@ -257,6 +271,72 @@ + } + #endif /* SEQUENTIAL_READ */ + ++#ifdef PNG_READ_APNG_SUPPORTED ++void PNGAPI ++png_read_frame_head(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_byte have_chunk_after_DAT; /* after IDAT or after fdAT */ ++ ++ png_debug(0, "Reading frame head"); ++ ++ if ((png_ptr->mode & PNG_HAVE_acTL) == 0) ++ png_error(png_ptr, "attempt to png_read_frame_head() but " ++ "no acTL present"); ++ ++ /* do nothing for the main IDAT */ ++ if (png_ptr->num_frames_read == 0) ++ return; ++ ++ png_read_reset(png_ptr); ++ png_ptr->flags &= ~PNG_FLAG_ROW_INIT; ++ png_ptr->mode &= ~PNG_HAVE_fcTL; ++ ++ have_chunk_after_DAT = 0; ++ for (;;) ++ { ++ png_uint_32 length = png_read_chunk_header(png_ptr); ++ ++ if (png_ptr->chunk_name == png_IDAT) ++ { ++ /* discard trailing IDATs for the first frame */ ++ if (have_chunk_after_DAT != 0 || png_ptr->num_frames_read > 1) ++ png_error(png_ptr, "png_read_frame_head(): out of place IDAT"); ++ png_crc_finish(png_ptr, length); ++ } ++ ++ else if (png_ptr->chunk_name == png_fcTL) ++ { ++ png_handle_fcTL(png_ptr, info_ptr, length); ++ have_chunk_after_DAT = 1; ++ } ++ ++ else if (png_ptr->chunk_name == png_fdAT) ++ { ++ png_ensure_sequence_number(png_ptr, length); ++ ++ /* discard trailing fdATs for frames other than the first */ ++ if (have_chunk_after_DAT == 0 && png_ptr->num_frames_read > 1) ++ png_crc_finish(png_ptr, length - 4); ++ else if (png_ptr->mode & PNG_HAVE_fcTL) ++ { ++ png_ptr->idat_size = length - 4; ++ png_ptr->mode |= PNG_HAVE_IDAT; ++ ++ break; ++ } ++ else ++ png_error(png_ptr, "png_read_frame_head(): out of place fdAT"); ++ } ++ else ++ { ++ png_warning(png_ptr, "Skipped (ignored) a chunk " ++ "between APNG chunks"); ++ png_crc_finish(png_ptr, length); ++ } ++ } ++} ++#endif /* READ_APNG */ ++ + /* Optional call to update the users info_ptr structure */ + void PNGAPI + png_read_update_info(png_structrp png_ptr, png_inforp info_ptr) +Index: pngget.c +=================================================================== +--- pngget.c ++++ pngget.c +@@ -1216,4 +1216,166 @@ + # endif + #endif + ++#ifdef PNG_APNG_SUPPORTED ++png_uint_32 PNGAPI ++png_get_acTL(png_structp png_ptr, png_infop info_ptr, ++ png_uint_32 *num_frames, png_uint_32 *num_plays) ++{ ++ png_debug1(1, "in %s retrieval function", "acTL"); ++ ++ if (png_ptr != NULL && info_ptr != NULL && ++ (info_ptr->valid & PNG_INFO_acTL) != 0 && ++ num_frames != NULL && num_plays != NULL) ++ { ++ *num_frames = info_ptr->num_frames; ++ *num_plays = info_ptr->num_plays; ++ return (1); ++ } ++ ++ return (0); ++} ++ ++png_uint_32 PNGAPI ++png_get_num_frames(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_num_frames()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->num_frames); ++ return (0); ++} ++ ++png_uint_32 PNGAPI ++png_get_num_plays(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_num_plays()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->num_plays); ++ return (0); ++} ++ ++png_uint_32 PNGAPI ++png_get_next_frame_fcTL(png_structp png_ptr, png_infop info_ptr, ++ png_uint_32 *width, png_uint_32 *height, ++ png_uint_32 *x_offset, png_uint_32 *y_offset, ++ png_uint_16 *delay_num, png_uint_16 *delay_den, ++ png_byte *dispose_op, png_byte *blend_op) ++{ ++ png_debug1(1, "in %s retrieval function", "fcTL"); ++ ++ if (png_ptr != NULL && info_ptr != NULL && ++ (info_ptr->valid & PNG_INFO_fcTL) != 0 && ++ width != NULL && height != NULL && ++ x_offset != NULL && y_offset != NULL && ++ delay_num != NULL && delay_den != NULL && ++ dispose_op != NULL && blend_op != NULL) ++ { ++ *width = info_ptr->next_frame_width; ++ *height = info_ptr->next_frame_height; ++ *x_offset = info_ptr->next_frame_x_offset; ++ *y_offset = info_ptr->next_frame_y_offset; ++ *delay_num = info_ptr->next_frame_delay_num; ++ *delay_den = info_ptr->next_frame_delay_den; ++ *dispose_op = info_ptr->next_frame_dispose_op; ++ *blend_op = info_ptr->next_frame_blend_op; ++ return (1); ++ } ++ ++ return (0); ++} ++ ++png_uint_32 PNGAPI ++png_get_next_frame_width(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_next_frame_width()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->next_frame_width); ++ return (0); ++} ++ ++png_uint_32 PNGAPI ++png_get_next_frame_height(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_next_frame_height()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->next_frame_height); ++ return (0); ++} ++ ++png_uint_32 PNGAPI ++png_get_next_frame_x_offset(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_next_frame_x_offset()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->next_frame_x_offset); ++ return (0); ++} ++ ++png_uint_32 PNGAPI ++png_get_next_frame_y_offset(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_next_frame_y_offset()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->next_frame_y_offset); ++ return (0); ++} ++ ++png_uint_16 PNGAPI ++png_get_next_frame_delay_num(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_next_frame_delay_num()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->next_frame_delay_num); ++ return (0); ++} ++ ++png_uint_16 PNGAPI ++png_get_next_frame_delay_den(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_next_frame_delay_den()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->next_frame_delay_den); ++ return (0); ++} ++ ++png_byte PNGAPI ++png_get_next_frame_dispose_op(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_next_frame_dispose_op()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->next_frame_dispose_op); ++ return (0); ++} ++ ++png_byte PNGAPI ++png_get_next_frame_blend_op(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_get_next_frame_blend_op()"); ++ ++ if (png_ptr != NULL && info_ptr != NULL) ++ return (info_ptr->next_frame_blend_op); ++ return (0); ++} ++ ++png_byte PNGAPI ++png_get_first_frame_is_hidden(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_first_frame_is_hidden()"); ++ ++ if (png_ptr != NULL) ++ return (png_byte)(png_ptr->apng_flags & PNG_FIRST_FRAME_HIDDEN); ++ ++ PNG_UNUSED(info_ptr) ++ ++ return 0; ++} ++#endif /* APNG */ + #endif /* READ || WRITE */ +Index: png.c +=================================================================== +--- png.c ++++ png.c +@@ -776,17 +776,21 @@ + #else + # ifdef __STDC__ + return PNG_STRING_NEWLINE \ +- "libpng version 1.6.30 - June 28, 2017" PNG_STRING_NEWLINE \ ++ "libpng version 1.6.30+apng - June 28, 2017" PNG_STRING_NEWLINE \ + "Copyright (c) 1998-2002,2004,2006-2017 Glenn Randers-Pehrson" \ + PNG_STRING_NEWLINE \ + "Copyright (c) 1996-1997 Andreas Dilger" PNG_STRING_NEWLINE \ + "Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc." \ +- PNG_STRING_NEWLINE; ++ PNG_STRING_NEWLINE \ ++ "Portions Copyright (c) 2006-2007 Andrew Smith" PNG_STRING_NEWLINE \ ++ "Portions Copyright (c) 2008-2017 Max Stepin" PNG_STRING_NEWLINE ; + # else +- return "libpng version 1.6.30 - June 28, 2017\ ++ return "libpng version 1.6.30+apng - June 28, 2017\ + Copyright (c) 1998-2002,2004,2006-2017 Glenn Randers-Pehrson\ + Copyright (c) 1996-1997 Andreas Dilger\ +- Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc."; ++ Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.\ ++ Portions Copyright (c) 2006-2007 Andrew Smith\ ++ Portions Copyright (c) 2008-2017 Max Stepin"; + # endif + #endif + } +Index: png.h +=================================================================== +--- png.h ++++ png.h +@@ -23,6 +23,12 @@ + * If you modify libpng you may insert additional notices immediately following + * this sentence. + * ++ * This modified version of libpng code adds animated PNG support and is ++ * released under the libpng license described below. The modifications are ++ * Copyright (c) 2006-2007 Andrew Smith, Copyright (c) 2008-2017 Max Stepin, ++ * and are delimited by "#ifdef PNG_APNG_SUPPORTED / #endif" directives ++ * surrounding them in the modified libpng source files. ++ * + * This code is released under the libpng license. + * + * libpng versions 1.0.7, July 1, 2000 through 1.6.30, June 28, 2017 are +@@ -309,8 +315,9 @@ + */ + + /* Version information for png.h - this should match the version in png.c */ +-#define PNG_LIBPNG_VER_STRING "1.6.30" +-#define PNG_HEADER_VERSION_STRING " libpng version 1.6.30 - June 28, 2017\n" ++#define PNG_LIBPNG_VER_STRING "1.6.30+apng" ++#define PNG_HEADER_VERSION_STRING \ ++ " libpng version 1.6.30+apng - June 28, 2017\n" + + #define PNG_LIBPNG_VER_SONUM 16 + #define PNG_LIBPNG_VER_DLLNUM 16 +@@ -361,6 +368,10 @@ + # include "pnglibconf.h" + #endif + ++#define PNG_APNG_SUPPORTED ++#define PNG_READ_APNG_SUPPORTED ++#define PNG_WRITE_APNG_SUPPORTED ++ + #ifndef PNG_VERSION_INFO_ONLY + /* Machine specific configuration. */ + # include "pngconf.h" +@@ -456,6 +467,17 @@ + * See pngconf.h for base types that vary by machine/system + */ + ++#ifdef PNG_APNG_SUPPORTED ++/* dispose_op flags from inside fcTL */ ++#define PNG_DISPOSE_OP_NONE 0x00 ++#define PNG_DISPOSE_OP_BACKGROUND 0x01 ++#define PNG_DISPOSE_OP_PREVIOUS 0x02 ++ ++/* blend_op flags from inside fcTL */ ++#define PNG_BLEND_OP_SOURCE 0x00 ++#define PNG_BLEND_OP_OVER 0x01 ++#endif /* APNG */ ++ + /* This triggers a compiler error in png.c, if png.c and png.h + * do not agree upon the version number. + */ +@@ -776,6 +798,10 @@ + #define PNG_INFO_sPLT 0x2000U /* ESR, 1.0.6 */ + #define PNG_INFO_sCAL 0x4000U /* ESR, 1.0.6 */ + #define PNG_INFO_IDAT 0x8000U /* ESR, 1.0.6 */ ++#ifdef PNG_APNG_SUPPORTED ++#define PNG_INFO_acTL 0x10000U ++#define PNG_INFO_fcTL 0x20000U ++#endif + + /* This is used for the transformation routines, as some of them + * change these values for the row. It also should enable using +@@ -813,6 +839,10 @@ + #ifdef PNG_PROGRESSIVE_READ_SUPPORTED + typedef PNG_CALLBACK(void, *png_progressive_info_ptr, (png_structp, png_infop)); + typedef PNG_CALLBACK(void, *png_progressive_end_ptr, (png_structp, png_infop)); ++#ifdef PNG_APNG_SUPPORTED ++typedef PNG_CALLBACK(void, *png_progressive_frame_ptr, (png_structp, ++ png_uint_32)); ++#endif + + /* The following callback receives png_uint_32 row_number, int pass for the + * png_bytep data of the row. When transforming an interlaced image the +@@ -3245,6 +3275,75 @@ + * END OF HARDWARE AND SOFTWARE OPTIONS + ******************************************************************************/ + ++#ifdef PNG_APNG_SUPPORTED ++PNG_EXPORT(246, png_uint_32, png_get_acTL, (png_structp png_ptr, ++ png_infop info_ptr, png_uint_32 *num_frames, png_uint_32 *num_plays)); ++ ++PNG_EXPORT(247, png_uint_32, png_set_acTL, (png_structp png_ptr, ++ png_infop info_ptr, png_uint_32 num_frames, png_uint_32 num_plays)); ++ ++PNG_EXPORT(248, png_uint_32, png_get_num_frames, (png_structp png_ptr, ++ png_infop info_ptr)); ++ ++PNG_EXPORT(249, png_uint_32, png_get_num_plays, (png_structp png_ptr, ++ png_infop info_ptr)); ++ ++PNG_EXPORT(250, png_uint_32, png_get_next_frame_fcTL, ++ (png_structp png_ptr, png_infop info_ptr, png_uint_32 *width, ++ png_uint_32 *height, png_uint_32 *x_offset, png_uint_32 *y_offset, ++ png_uint_16 *delay_num, png_uint_16 *delay_den, png_byte *dispose_op, ++ png_byte *blend_op)); ++ ++PNG_EXPORT(251, png_uint_32, png_set_next_frame_fcTL, ++ (png_structp png_ptr, png_infop info_ptr, png_uint_32 width, ++ png_uint_32 height, png_uint_32 x_offset, png_uint_32 y_offset, ++ png_uint_16 delay_num, png_uint_16 delay_den, png_byte dispose_op, ++ png_byte blend_op)); ++ ++PNG_EXPORT(252, png_uint_32, png_get_next_frame_width, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(253, png_uint_32, png_get_next_frame_height, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(254, png_uint_32, png_get_next_frame_x_offset, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(255, png_uint_32, png_get_next_frame_y_offset, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(256, png_uint_16, png_get_next_frame_delay_num, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(257, png_uint_16, png_get_next_frame_delay_den, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(258, png_byte, png_get_next_frame_dispose_op, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(259, png_byte, png_get_next_frame_blend_op, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(260, png_byte, png_get_first_frame_is_hidden, ++ (png_structp png_ptr, png_infop info_ptr)); ++PNG_EXPORT(261, png_uint_32, png_set_first_frame_is_hidden, ++ (png_structp png_ptr, png_infop info_ptr, png_byte is_hidden)); ++ ++#ifdef PNG_READ_APNG_SUPPORTED ++PNG_EXPORT(262, void, png_read_frame_head, (png_structp png_ptr, ++ png_infop info_ptr)); ++#ifdef PNG_PROGRESSIVE_READ_SUPPORTED ++PNG_EXPORT(263, void, png_set_progressive_frame_fn, (png_structp png_ptr, ++ png_progressive_frame_ptr frame_info_fn, ++ png_progressive_frame_ptr frame_end_fn)); ++#endif /* PROGRESSIVE_READ */ ++#endif /* READ_APNG */ ++ ++#ifdef PNG_WRITE_APNG_SUPPORTED ++PNG_EXPORT(264, void, png_write_frame_head, (png_structp png_ptr, ++ png_infop info_ptr, png_bytepp row_pointers, ++ png_uint_32 width, png_uint_32 height, ++ png_uint_32 x_offset, png_uint_32 y_offset, ++ png_uint_16 delay_num, png_uint_16 delay_den, png_byte dispose_op, ++ png_byte blend_op)); ++ ++PNG_EXPORT(265, void, png_write_frame_tail, (png_structp png_ptr, ++ png_infop info_ptr)); ++#endif /* WRITE_APNG */ ++#endif /* APNG */ ++ + /* Maintainer: Put new public prototypes here ^, in libpng.3, in project + * defs, and in scripts/symbols.def. + */ +@@ -3253,7 +3352,11 @@ + * one to use is one more than this.) + */ + #ifdef PNG_EXPORT_LAST_ORDINAL ++#ifdef PNG_APNG_SUPPORTED ++ PNG_EXPORT_LAST_ORDINAL(265); ++#else + PNG_EXPORT_LAST_ORDINAL(245); ++#endif /* APNG */ + #endif + + #ifdef __cplusplus +Index: pngpriv.h +=================================================================== +--- pngpriv.h ++++ pngpriv.h +@@ -625,6 +625,10 @@ + #define PNG_HAVE_CHUNK_AFTER_IDAT 0x2000U /* Have another chunk after IDAT */ + /* 0x4000U (unused) */ + #define PNG_IS_READ_STRUCT 0x8000U /* Else is a write struct */ ++#ifdef PNG_APNG_SUPPORTED ++#define PNG_HAVE_acTL 0x10000U ++#define PNG_HAVE_fcTL 0x20000U ++#endif + + /* Flags for the transformations the PNG library does on the image data */ + #define PNG_BGR 0x0001U +@@ -860,6 +864,16 @@ + #define png_tRNS PNG_U32(116, 82, 78, 83) + #define png_zTXt PNG_U32(122, 84, 88, 116) + ++#ifdef PNG_APNG_SUPPORTED ++#define png_acTL PNG_U32( 97, 99, 84, 76) ++#define png_fcTL PNG_U32(102, 99, 84, 76) ++#define png_fdAT PNG_U32(102, 100, 65, 84) ++ ++/* For png_struct.apng_flags: */ ++#define PNG_FIRST_FRAME_HIDDEN 0x0001U ++#define PNG_APNG_APP 0x0002U ++#endif ++ + /* The following will work on (signed char*) strings, whereas the get_uint_32 + * macro will fail on top-bit-set values because of the sign extension. + */ +@@ -1598,6 +1612,49 @@ + + #endif /* PROGRESSIVE_READ */ + ++#ifdef PNG_APNG_SUPPORTED ++PNG_INTERNAL_FUNCTION(void,png_ensure_fcTL_is_valid,(png_structp png_ptr, ++ png_uint_32 width, png_uint_32 height, ++ png_uint_32 x_offset, png_uint_32 y_offset, ++ png_uint_16 delay_num, png_uint_16 delay_den, ++ png_byte dispose_op, png_byte blend_op),PNG_EMPTY); ++ ++#ifdef PNG_READ_APNG_SUPPORTED ++PNG_INTERNAL_FUNCTION(void,png_handle_acTL,(png_structp png_ptr, ++ png_infop info_ptr, png_uint_32 length),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_handle_fcTL,(png_structp png_ptr, ++ png_infop info_ptr, png_uint_32 length),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_handle_fdAT,(png_structp png_ptr, ++ png_infop info_ptr, png_uint_32 length),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_have_info,(png_structp png_ptr, ++ png_infop info_ptr),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_ensure_sequence_number,(png_structp png_ptr, ++ png_uint_32 length),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_read_reset,(png_structp png_ptr),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_read_reinit,(png_structp png_ptr, ++ png_infop info_ptr),PNG_EMPTY); ++#ifdef PNG_PROGRESSIVE_READ_SUPPORTED ++PNG_INTERNAL_FUNCTION(void,png_progressive_read_reset,(png_structp png_ptr), ++ PNG_EMPTY); ++#endif /* PROGRESSIVE_READ */ ++#endif /* READ_APNG */ ++ ++#ifdef PNG_WRITE_APNG_SUPPORTED ++PNG_INTERNAL_FUNCTION(void,png_write_acTL,(png_structp png_ptr, ++ png_uint_32 num_frames, png_uint_32 num_plays),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_write_fcTL,(png_structp png_ptr, ++ png_uint_32 width, png_uint_32 height, ++ png_uint_32 x_offset, png_uint_32 y_offset, ++ png_uint_16 delay_num, png_uint_16 delay_den, ++ png_byte dispose_op, png_byte blend_op),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_write_fdAT,(png_structp png_ptr, ++ png_const_bytep data, png_size_t length),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_write_reset,(png_structp png_ptr),PNG_EMPTY); ++PNG_INTERNAL_FUNCTION(void,png_write_reinit,(png_structp png_ptr, ++ png_infop info_ptr, png_uint_32 width, png_uint_32 height),PNG_EMPTY); ++#endif /* WRITE_APNG */ ++#endif /* APNG */ ++ + /* Added at libpng version 1.6.0 */ + #ifdef PNG_GAMMA_SUPPORTED + PNG_INTERNAL_FUNCTION(void,png_colorspace_set_gamma,(png_const_structrp png_ptr, +Index: pnginfo.h +=================================================================== +--- pnginfo.h ++++ pnginfo.h +@@ -255,5 +255,18 @@ + png_bytepp row_pointers; /* the image bits */ + #endif + ++#ifdef PNG_APNG_SUPPORTED ++ png_uint_32 num_frames; /* including default image */ ++ png_uint_32 num_plays; ++ png_uint_32 next_frame_width; ++ png_uint_32 next_frame_height; ++ png_uint_32 next_frame_x_offset; ++ png_uint_32 next_frame_y_offset; ++ png_uint_16 next_frame_delay_num; ++ png_uint_16 next_frame_delay_den; ++ png_byte next_frame_dispose_op; ++ png_byte next_frame_blend_op; ++#endif ++ + }; + #endif /* PNGINFO_H */ +Index: pngstruct.h +=================================================================== +--- pngstruct.h ++++ pngstruct.h +@@ -403,6 +403,27 @@ + png_byte filter_type; + #endif + ++#ifdef PNG_APNG_SUPPORTED ++ png_uint_32 apng_flags; ++ png_uint_32 next_seq_num; /* next fcTL/fdAT chunk sequence number */ ++ png_uint_32 first_frame_width; ++ png_uint_32 first_frame_height; ++ ++#ifdef PNG_READ_APNG_SUPPORTED ++ png_uint_32 num_frames_read; /* incremented after all image data of */ ++ /* a frame is read */ ++#ifdef PNG_PROGRESSIVE_READ_SUPPORTED ++ png_progressive_frame_ptr frame_info_fn; /* frame info read callback */ ++ png_progressive_frame_ptr frame_end_fn; /* frame data read callback */ ++#endif ++#endif ++ ++#ifdef PNG_WRITE_APNG_SUPPORTED ++ png_uint_32 num_frames_to_write; ++ png_uint_32 num_frames_written; ++#endif ++#endif /* APNG */ ++ + /* New members added in libpng-1.2.0 */ + + /* New members added in libpng-1.0.2 but first enabled by default in 1.2.0 */ +Index: pngwrite.c +=================================================================== +--- pngwrite.c ++++ pngwrite.c +@@ -128,6 +128,10 @@ + * the application continues writing the PNG. So check the 'invalid' + * flag here too. + */ ++#ifdef PNG_WRITE_APNG_SUPPORTED ++ if ((info_ptr->valid & PNG_INFO_acTL) != 0) ++ png_write_acTL(png_ptr, info_ptr->num_frames, info_ptr->num_plays); ++#endif + #ifdef PNG_GAMMA_SUPPORTED + # ifdef PNG_WRITE_gAMA_SUPPORTED + if ((info_ptr->colorspace.flags & PNG_COLORSPACE_INVALID) == 0 && +@@ -360,6 +364,11 @@ + if ((png_ptr->mode & PNG_HAVE_IDAT) == 0) + png_error(png_ptr, "No IDATs written into file"); + ++#ifdef PNG_WRITE_APNG_SUPPORTED ++ if (png_ptr->num_frames_written != png_ptr->num_frames_to_write) ++ png_error(png_ptr, "Not enough frames written"); ++#endif ++ + #ifdef PNG_WRITE_CHECK_FOR_INVALID_INDEX_SUPPORTED + if (png_ptr->num_palette_max > png_ptr->num_palette) + png_benign_error(png_ptr, "Wrote palette index exceeding num_palette"); +@@ -2382,4 +2391,42 @@ + } + #endif /* SIMPLIFIED_WRITE_STDIO */ + #endif /* SIMPLIFIED_WRITE */ ++ ++#ifdef PNG_WRITE_APNG_SUPPORTED ++void PNGAPI ++png_write_frame_head(png_structp png_ptr, png_infop info_ptr, ++ png_bytepp row_pointers, png_uint_32 width, png_uint_32 height, ++ png_uint_32 x_offset, png_uint_32 y_offset, ++ png_uint_16 delay_num, png_uint_16 delay_den, png_byte dispose_op, ++ png_byte blend_op) ++{ ++ png_debug(1, "in png_write_frame_head"); ++ ++ /* there is a chance this has been set after png_write_info was called, ++ * so it would be set but not written. is there a way to be sure? */ ++ if ((info_ptr->valid & PNG_INFO_acTL) == 0) ++ png_error(png_ptr, "png_write_frame_head(): acTL not set"); ++ ++ png_write_reset(png_ptr); ++ ++ png_write_reinit(png_ptr, info_ptr, width, height); ++ ++ if ((png_ptr->apng_flags & PNG_FIRST_FRAME_HIDDEN) == 0 || ++ png_ptr->num_frames_written != 0) ++ png_write_fcTL(png_ptr, width, height, x_offset, y_offset, ++ delay_num, delay_den, dispose_op, blend_op); ++ ++ PNG_UNUSED(row_pointers) ++} ++ ++void PNGAPI ++png_write_frame_tail(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_debug(1, "in png_write_frame_tail"); ++ ++ png_ptr->num_frames_written++; ++ ++ PNG_UNUSED(info_ptr) ++} ++#endif /* WRITE_APNG */ + #endif /* WRITE */ +Index: pngpread.c +=================================================================== +--- pngpread.c ++++ pngpread.c +@@ -194,6 +194,89 @@ + + chunk_name = png_ptr->chunk_name; + ++#ifdef PNG_READ_APNG_SUPPORTED ++ if (png_ptr->num_frames_read > 0 && ++ png_ptr->num_frames_read < info_ptr->num_frames) ++ { ++ if (chunk_name == png_IDAT) ++ { ++ /* Discard trailing IDATs for the first frame */ ++ if ((png_ptr->mode & PNG_HAVE_fcTL) != 0 || ++ png_ptr->num_frames_read > 1) ++ png_error(png_ptr, "out of place IDAT"); ++ ++ PNG_PUSH_SAVE_BUFFER_IF_FULL ++ png_crc_finish(png_ptr, png_ptr->push_length); ++ png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; ++ } ++ ++ else if (chunk_name == png_fdAT) ++ { ++ PNG_PUSH_SAVE_BUFFER_IF_LT(4) ++ png_ensure_sequence_number(png_ptr, 4); ++ ++ if ((png_ptr->mode & PNG_HAVE_fcTL) == 0) ++ { ++ /* Discard trailing fdATs for frames other than the first */ ++ if (png_ptr->num_frames_read < 2) ++ png_error(png_ptr, "out of place fdAT"); ++ ++ PNG_PUSH_SAVE_BUFFER_IF_FULL ++ png_crc_finish(png_ptr, png_ptr->push_length); ++ png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; ++ } ++ ++ else ++ { ++ /* frame data follows */ ++ png_ptr->idat_size = png_ptr->push_length - 4; ++ png_ptr->mode |= PNG_HAVE_IDAT; ++ png_ptr->process_mode = PNG_READ_IDAT_MODE; ++ } ++ } ++ ++ else if (chunk_name == png_fcTL) ++ { ++ PNG_PUSH_SAVE_BUFFER_IF_FULL ++ png_read_reset(png_ptr); ++ png_ptr->mode &= ~PNG_HAVE_fcTL; ++ ++ png_handle_fcTL(png_ptr, info_ptr, png_ptr->push_length); ++ ++ if ((png_ptr->mode & PNG_HAVE_fcTL) == 0) ++ png_error(png_ptr, "missing required fcTL chunk"); ++ ++ png_read_reinit(png_ptr, info_ptr); ++ png_progressive_read_reset(png_ptr); ++ ++ if (png_ptr->frame_info_fn != NULL) ++ (*(png_ptr->frame_info_fn))(png_ptr, png_ptr->num_frames_read); ++ ++ png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; ++ } ++ ++ else if (chunk_name == png_IEND) ++ { ++ PNG_PUSH_SAVE_BUFFER_IF_FULL ++ png_warning(png_ptr, "Number of actual frames fewer than expected"); ++ png_crc_finish(png_ptr, png_ptr->push_length); ++ png_ptr->process_mode = PNG_READ_DONE_MODE; ++ png_push_have_end(png_ptr, info_ptr); ++ } ++ ++ else ++ { ++ PNG_PUSH_SAVE_BUFFER_IF_FULL ++ png_warning(png_ptr, "Skipped (ignored) a chunk " ++ "between APNG chunks"); ++ png_crc_finish(png_ptr, png_ptr->push_length); ++ png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; ++ } ++ ++ return; ++ } ++#endif /* READ_APNG */ ++ + if (chunk_name == png_IDAT) + { + if ((png_ptr->mode & PNG_AFTER_IDAT) != 0) +@@ -260,6 +343,9 @@ + + else if (chunk_name == png_IDAT) + { ++#ifdef PNG_READ_APNG_SUPPORTED ++ png_have_info(png_ptr, info_ptr); ++#endif + png_ptr->idat_size = png_ptr->push_length; + png_ptr->process_mode = PNG_READ_IDAT_MODE; + png_push_have_info(png_ptr, info_ptr); +@@ -406,6 +492,20 @@ + } + #endif + ++#ifdef PNG_READ_APNG_SUPPORTED ++ else if (chunk_name == png_acTL) ++ { ++ PNG_PUSH_SAVE_BUFFER_IF_FULL ++ png_handle_acTL(png_ptr, info_ptr, png_ptr->push_length); ++ } ++ ++ else if (chunk_name == png_fcTL) ++ { ++ PNG_PUSH_SAVE_BUFFER_IF_FULL ++ png_handle_fcTL(png_ptr, info_ptr, png_ptr->push_length); ++ } ++ ++#endif /* READ_APNG */ + else + { + PNG_PUSH_SAVE_BUFFER_IF_FULL +@@ -538,7 +638,11 @@ + png_byte chunk_tag[4]; + + /* TODO: this code can be commoned up with the same code in push_read */ ++#ifdef PNG_READ_APNG_SUPPORTED ++ PNG_PUSH_SAVE_BUFFER_IF_LT(12) ++#else + PNG_PUSH_SAVE_BUFFER_IF_LT(8) ++#endif + png_push_fill_buffer(png_ptr, chunk_length, 4); + png_ptr->push_length = png_get_uint_31(png_ptr, chunk_length); + png_reset_crc(png_ptr); +@@ -546,17 +650,60 @@ + png_ptr->chunk_name = PNG_CHUNK_FROM_STRING(chunk_tag); + png_ptr->mode |= PNG_HAVE_CHUNK_HEADER; + ++#ifdef PNG_READ_APNG_SUPPORTED ++ if (png_ptr->chunk_name != png_fdAT && png_ptr->num_frames_read > 0) ++ { ++ if ((png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED) != 0) ++ { ++ png_ptr->process_mode = PNG_READ_CHUNK_MODE; ++ if (png_ptr->frame_end_fn != NULL) ++ (*(png_ptr->frame_end_fn))(png_ptr, png_ptr->num_frames_read); ++ png_ptr->num_frames_read++; ++ return; ++ } ++ else ++ { ++ if (png_ptr->chunk_name == png_IEND) ++ png_error(png_ptr, "Not enough image data"); ++ PNG_PUSH_SAVE_BUFFER_IF_FULL ++ png_warning(png_ptr, "Skipping (ignoring) a chunk between " ++ "APNG chunks"); ++ png_crc_finish(png_ptr, png_ptr->push_length); ++ png_ptr->mode &= ~PNG_HAVE_CHUNK_HEADER; ++ return; ++ } ++ } ++ else ++#endif ++#ifdef PNG_READ_APNG_SUPPORTED ++ if (png_ptr->chunk_name != png_IDAT && png_ptr->num_frames_read == 0) ++#else + if (png_ptr->chunk_name != png_IDAT) ++#endif + { + png_ptr->process_mode = PNG_READ_CHUNK_MODE; + + if ((png_ptr->flags & PNG_FLAG_ZSTREAM_ENDED) == 0) + png_error(png_ptr, "Not enough compressed data"); + ++#ifdef PNG_READ_APNG_SUPPORTED ++ if (png_ptr->frame_end_fn != NULL) ++ (*(png_ptr->frame_end_fn))(png_ptr, png_ptr->num_frames_read); ++ png_ptr->num_frames_read++; ++#endif ++ + return; + } + + png_ptr->idat_size = png_ptr->push_length; ++ ++#ifdef PNG_READ_APNG_SUPPORTED ++ if (png_ptr->num_frames_read > 0) ++ { ++ png_ensure_sequence_number(png_ptr, 4); ++ png_ptr->idat_size -= 4; ++ } ++#endif + } + + if (png_ptr->idat_size != 0 && png_ptr->save_buffer_size != 0) +@@ -630,6 +777,16 @@ + if (!(buffer_length > 0) || buffer == NULL) + png_error(png_ptr, "No IDAT data (internal error)"); + ++#ifdef PNG_READ_APNG_SUPPORTED ++ /* If the app is not APNG-aware, decode only the first frame */ ++ if ((png_ptr->apng_flags & PNG_APNG_APP) == 0 && ++ png_ptr->num_frames_read > 0) ++ { ++ png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED; ++ return; ++ } ++#endif ++ + /* This routine must process all the data it has been given + * before returning, calling the row callback as required to + * handle the uncompressed results. +@@ -1084,6 +1241,18 @@ + png_set_read_fn(png_ptr, progressive_ptr, png_push_fill_buffer); + } + ++#ifdef PNG_READ_APNG_SUPPORTED ++void PNGAPI ++png_set_progressive_frame_fn(png_structp png_ptr, ++ png_progressive_frame_ptr frame_info_fn, ++ png_progressive_frame_ptr frame_end_fn) ++{ ++ png_ptr->frame_info_fn = frame_info_fn; ++ png_ptr->frame_end_fn = frame_end_fn; ++ png_ptr->apng_flags |= PNG_APNG_APP; ++} ++#endif ++ + png_voidp PNGAPI + png_get_progressive_ptr(png_const_structrp png_ptr) + { +Index: pngset.c +=================================================================== +--- pngset.c ++++ pngset.c +@@ -241,6 +241,11 @@ + info_ptr->pixel_depth = (png_byte)(info_ptr->channels * info_ptr->bit_depth); + + info_ptr->rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, width); ++ ++#ifdef PNG_APNG_SUPPORTED ++ /* for non-animated png. this may be overwritten from an acTL chunk later */ ++ info_ptr->num_frames = 1; ++#endif + } + + #ifdef PNG_oFFs_SUPPORTED +@@ -1111,6 +1116,146 @@ + } + #endif /* sPLT */ + ++#ifdef PNG_APNG_SUPPORTED ++png_uint_32 PNGAPI ++png_set_acTL(png_structp png_ptr, png_infop info_ptr, ++ png_uint_32 num_frames, png_uint_32 num_plays) ++{ ++ png_debug1(1, "in %s storage function", "acTL"); ++ ++ if (png_ptr == NULL || info_ptr == NULL) ++ { ++ png_warning(png_ptr, ++ "Call to png_set_acTL() with NULL png_ptr " ++ "or info_ptr ignored"); ++ return (0); ++ } ++ if (num_frames == 0) ++ { ++ png_warning(png_ptr, ++ "Ignoring attempt to set acTL with num_frames zero"); ++ return (0); ++ } ++ if (num_frames > PNG_UINT_31_MAX) ++ { ++ png_warning(png_ptr, ++ "Ignoring attempt to set acTL with num_frames > 2^31-1"); ++ return (0); ++ } ++ if (num_plays > PNG_UINT_31_MAX) ++ { ++ png_warning(png_ptr, ++ "Ignoring attempt to set acTL with num_plays > 2^31-1"); ++ return (0); ++ } ++ ++ info_ptr->num_frames = num_frames; ++ info_ptr->num_plays = num_plays; ++ ++ info_ptr->valid |= PNG_INFO_acTL; ++ ++ return (1); ++} ++ ++/* delay_num and delay_den can hold any 16-bit values including zero */ ++png_uint_32 PNGAPI ++png_set_next_frame_fcTL(png_structp png_ptr, png_infop info_ptr, ++ png_uint_32 width, png_uint_32 height, ++ png_uint_32 x_offset, png_uint_32 y_offset, ++ png_uint_16 delay_num, png_uint_16 delay_den, ++ png_byte dispose_op, png_byte blend_op) ++{ ++ png_debug1(1, "in %s storage function", "fcTL"); ++ ++ if (png_ptr == NULL || info_ptr == NULL) ++ { ++ png_warning(png_ptr, ++ "Call to png_set_fcTL() with NULL png_ptr or info_ptr " ++ "ignored"); ++ return (0); ++ } ++ ++ png_ensure_fcTL_is_valid(png_ptr, width, height, x_offset, y_offset, ++ delay_num, delay_den, dispose_op, blend_op); ++ ++ if (blend_op == PNG_BLEND_OP_OVER) ++ { ++ if ((png_ptr->color_type & PNG_COLOR_MASK_ALPHA) == 0 && ++ png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) == 0) ++ { ++ png_warning(png_ptr, "PNG_BLEND_OP_OVER is meaningless " ++ "and wasteful for opaque images, ignored"); ++ blend_op = PNG_BLEND_OP_SOURCE; ++ } ++ } ++ ++ info_ptr->next_frame_width = width; ++ info_ptr->next_frame_height = height; ++ info_ptr->next_frame_x_offset = x_offset; ++ info_ptr->next_frame_y_offset = y_offset; ++ info_ptr->next_frame_delay_num = delay_num; ++ info_ptr->next_frame_delay_den = delay_den; ++ info_ptr->next_frame_dispose_op = dispose_op; ++ info_ptr->next_frame_blend_op = blend_op; ++ ++ info_ptr->valid |= PNG_INFO_fcTL; ++ ++ return (1); ++} ++ ++void /* PRIVATE */ ++png_ensure_fcTL_is_valid(png_structp png_ptr, ++ png_uint_32 width, png_uint_32 height, ++ png_uint_32 x_offset, png_uint_32 y_offset, ++ png_uint_16 delay_num, png_uint_16 delay_den, ++ png_byte dispose_op, png_byte blend_op) ++{ ++ if (width == 0 || width > PNG_UINT_31_MAX) ++ png_error(png_ptr, "invalid width in fcTL (0 or > 2^31-1)"); ++ if (height == 0 || height > PNG_UINT_31_MAX) ++ png_error(png_ptr, "invalid height in fcTL (0 or > 2^31-1)"); ++ if (x_offset > PNG_UINT_31_MAX) ++ png_error(png_ptr, "invalid x_offset in fcTL (> 2^31-1)"); ++ if (y_offset > PNG_UINT_31_MAX) ++ png_error(png_ptr, "invalid y_offset in fcTL (> 2^31-1)"); ++ if (width + x_offset > png_ptr->first_frame_width || ++ height + y_offset > png_ptr->first_frame_height) ++ png_error(png_ptr, "dimensions of a frame are greater than " ++ "the ones in IHDR"); ++ ++ if (dispose_op != PNG_DISPOSE_OP_NONE && ++ dispose_op != PNG_DISPOSE_OP_BACKGROUND && ++ dispose_op != PNG_DISPOSE_OP_PREVIOUS) ++ png_error(png_ptr, "invalid dispose_op in fcTL"); ++ ++ if (blend_op != PNG_BLEND_OP_SOURCE && ++ blend_op != PNG_BLEND_OP_OVER) ++ png_error(png_ptr, "invalid blend_op in fcTL"); ++ ++ PNG_UNUSED(delay_num) ++ PNG_UNUSED(delay_den) ++} ++ ++png_uint_32 PNGAPI ++png_set_first_frame_is_hidden(png_structp png_ptr, png_infop info_ptr, ++ png_byte is_hidden) ++{ ++ png_debug(1, "in png_first_frame_is_hidden()"); ++ ++ if (png_ptr == NULL) ++ return 0; ++ ++ if (is_hidden != 0) ++ png_ptr->apng_flags |= PNG_FIRST_FRAME_HIDDEN; ++ else ++ png_ptr->apng_flags &= ~PNG_FIRST_FRAME_HIDDEN; ++ ++ PNG_UNUSED(info_ptr) ++ ++ return 1; ++} ++#endif /* APNG */ ++ + #ifdef PNG_STORE_UNKNOWN_CHUNKS_SUPPORTED + static png_byte + check_location(png_const_structrp png_ptr, int location) +Index: pngrutil.c +=================================================================== +--- pngrutil.c ++++ pngrutil.c +@@ -861,6 +861,11 @@ + filter_type = buf[11]; + interlace_type = buf[12]; + ++#ifdef PNG_READ_APNG_SUPPORTED ++ png_ptr->first_frame_width = width; ++ png_ptr->first_frame_height = height; ++#endif ++ + /* Set internal variables */ + png_ptr->width = width; + png_ptr->height = height; +@@ -2764,6 +2769,180 @@ + } + #endif + ++#ifdef PNG_READ_APNG_SUPPORTED ++void /* PRIVATE */ ++png_handle_acTL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) ++{ ++ png_byte data[8]; ++ png_uint_32 num_frames; ++ png_uint_32 num_plays; ++ png_uint_32 didSet; ++ ++ png_debug(1, "in png_handle_acTL"); ++ ++ if ((png_ptr->mode & PNG_HAVE_IHDR) == 0) ++ { ++ png_error(png_ptr, "Missing IHDR before acTL"); ++ } ++ else if ((png_ptr->mode & PNG_HAVE_IDAT) != 0) ++ { ++ png_warning(png_ptr, "Invalid acTL after IDAT skipped"); ++ png_crc_finish(png_ptr, length); ++ return; ++ } ++ else if ((png_ptr->mode & PNG_HAVE_acTL) != 0) ++ { ++ png_warning(png_ptr, "Duplicate acTL skipped"); ++ png_crc_finish(png_ptr, length); ++ return; ++ } ++ else if (length != 8) ++ { ++ png_warning(png_ptr, "acTL with invalid length skipped"); ++ png_crc_finish(png_ptr, length); ++ return; ++ } ++ ++ png_crc_read(png_ptr, data, 8); ++ png_crc_finish(png_ptr, 0); ++ ++ num_frames = png_get_uint_31(png_ptr, data); ++ num_plays = png_get_uint_31(png_ptr, data + 4); ++ ++ /* the set function will do error checking on num_frames */ ++ didSet = png_set_acTL(png_ptr, info_ptr, num_frames, num_plays); ++ if (didSet != 0) ++ png_ptr->mode |= PNG_HAVE_acTL; ++} ++ ++void /* PRIVATE */ ++png_handle_fcTL(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) ++{ ++ png_byte data[22]; ++ png_uint_32 width; ++ png_uint_32 height; ++ png_uint_32 x_offset; ++ png_uint_32 y_offset; ++ png_uint_16 delay_num; ++ png_uint_16 delay_den; ++ png_byte dispose_op; ++ png_byte blend_op; ++ ++ png_debug(1, "in png_handle_fcTL"); ++ ++ png_ensure_sequence_number(png_ptr, length); ++ ++ if ((png_ptr->mode & PNG_HAVE_IHDR) == 0) ++ { ++ png_error(png_ptr, "Missing IHDR before fcTL"); ++ } ++ else if ((png_ptr->mode & PNG_HAVE_IDAT) != 0) ++ { ++ /* for any frames other then the first this message may be misleading, ++ * but correct. PNG_HAVE_IDAT is unset before the frame head is read ++ * i can't think of a better message */ ++ png_warning(png_ptr, "Invalid fcTL after IDAT skipped"); ++ png_crc_finish(png_ptr, length-4); ++ return; ++ } ++ else if ((png_ptr->mode & PNG_HAVE_fcTL) != 0) ++ { ++ png_warning(png_ptr, "Duplicate fcTL within one frame skipped"); ++ png_crc_finish(png_ptr, length-4); ++ return; ++ } ++ else if (length != 26) ++ { ++ png_warning(png_ptr, "fcTL with invalid length skipped"); ++ png_crc_finish(png_ptr, length-4); ++ return; ++ } ++ ++ png_crc_read(png_ptr, data, 22); ++ png_crc_finish(png_ptr, 0); ++ ++ width = png_get_uint_31(png_ptr, data); ++ height = png_get_uint_31(png_ptr, data + 4); ++ x_offset = png_get_uint_31(png_ptr, data + 8); ++ y_offset = png_get_uint_31(png_ptr, data + 12); ++ delay_num = png_get_uint_16(data + 16); ++ delay_den = png_get_uint_16(data + 18); ++ dispose_op = data[20]; ++ blend_op = data[21]; ++ ++ if (png_ptr->num_frames_read == 0 && (x_offset != 0 || y_offset != 0)) ++ { ++ png_warning(png_ptr, "fcTL for the first frame must have zero offset"); ++ return; ++ } ++ ++ if (info_ptr != NULL) ++ { ++ if (png_ptr->num_frames_read == 0 && ++ (width != info_ptr->width || height != info_ptr->height)) ++ { ++ png_warning(png_ptr, "size in first frame's fcTL must match " ++ "the size in IHDR"); ++ return; ++ } ++ ++ /* The set function will do more error checking */ ++ png_set_next_frame_fcTL(png_ptr, info_ptr, width, height, ++ x_offset, y_offset, delay_num, delay_den, ++ dispose_op, blend_op); ++ ++ png_read_reinit(png_ptr, info_ptr); ++ ++ png_ptr->mode |= PNG_HAVE_fcTL; ++ } ++} ++ ++void /* PRIVATE */ ++png_have_info(png_structp png_ptr, png_infop info_ptr) ++{ ++ if ((info_ptr->valid & PNG_INFO_acTL) != 0 && ++ (info_ptr->valid & PNG_INFO_fcTL) == 0) ++ { ++ png_ptr->apng_flags |= PNG_FIRST_FRAME_HIDDEN; ++ info_ptr->num_frames++; ++ } ++} ++ ++void /* PRIVATE */ ++png_handle_fdAT(png_structp png_ptr, png_infop info_ptr, png_uint_32 length) ++{ ++ png_ensure_sequence_number(png_ptr, length); ++ ++ /* This function is only called from png_read_end(), png_read_info(), ++ * and png_push_read_chunk() which means that: ++ * - the user doesn't want to read this frame ++ * - or this is an out-of-place fdAT ++ * in either case it is safe to ignore the chunk with a warning */ ++ png_warning(png_ptr, "ignoring fdAT chunk"); ++ png_crc_finish(png_ptr, length - 4); ++ PNG_UNUSED(info_ptr) ++} ++ ++void /* PRIVATE */ ++png_ensure_sequence_number(png_structp png_ptr, png_uint_32 length) ++{ ++ png_byte data[4]; ++ png_uint_32 sequence_number; ++ ++ if (length < 4) ++ png_error(png_ptr, "invalid fcTL or fdAT chunk found"); ++ ++ png_crc_read(png_ptr, data, 4); ++ sequence_number = png_get_uint_31(png_ptr, data); ++ ++ if (sequence_number != png_ptr->next_seq_num) ++ png_error(png_ptr, "fcTL or fdAT chunk with out-of-order sequence " ++ "number found"); ++ ++ png_ptr->next_seq_num++; ++} ++#endif /* READ_APNG */ ++ + #ifdef PNG_READ_UNKNOWN_CHUNKS_SUPPORTED + /* Utility function for png_handle_unknown; set up png_ptr::unknown_chunk */ + static int +@@ -4032,6 +4211,38 @@ + uInt avail_in; + png_bytep buffer; + ++#ifdef PNG_READ_APNG_SUPPORTED ++ png_uint_32 bytes_to_skip = 0; ++ ++ while (png_ptr->idat_size == 0 || bytes_to_skip != 0) ++ { ++ png_crc_finish(png_ptr, bytes_to_skip); ++ bytes_to_skip = 0; ++ ++ png_ptr->idat_size = png_read_chunk_header(png_ptr); ++ if (png_ptr->num_frames_read == 0) ++ { ++ if (png_ptr->chunk_name != png_IDAT) ++ png_error(png_ptr, "Not enough image data"); ++ } ++ else ++ { ++ if (png_ptr->chunk_name == png_IEND) ++ png_error(png_ptr, "Not enough image data"); ++ if (png_ptr->chunk_name != png_fdAT) ++ { ++ png_warning(png_ptr, "Skipped (ignored) a chunk " ++ "between APNG chunks"); ++ bytes_to_skip = png_ptr->idat_size; ++ continue; ++ } ++ ++ png_ensure_sequence_number(png_ptr, png_ptr->idat_size); ++ ++ png_ptr->idat_size -= 4; ++ } ++ } ++#else + while (png_ptr->idat_size == 0) + { + png_crc_finish(png_ptr, 0); +@@ -4043,6 +4254,7 @@ + if (png_ptr->chunk_name != png_IDAT) + png_error(png_ptr, "Not enough image data"); + } ++#endif /* READ_APNG */ + + avail_in = png_ptr->IDAT_read_size; + +@@ -4106,6 +4318,9 @@ + + png_ptr->mode |= PNG_AFTER_IDAT; + png_ptr->flags |= PNG_FLAG_ZSTREAM_ENDED; ++#ifdef PNG_READ_APNG_SUPPORTED ++ png_ptr->num_frames_read++; ++#endif + + if (png_ptr->zstream.avail_in > 0 || png_ptr->idat_size > 0) + png_chunk_benign_error(png_ptr, "Extra compressed data"); +@@ -4544,4 +4759,80 @@ + + png_ptr->flags |= PNG_FLAG_ROW_INIT; + } ++ ++#ifdef PNG_READ_APNG_SUPPORTED ++/* This function is to be called after the main IDAT set has been read and ++ * before a new IDAT is read. It resets some parts of png_ptr ++ * to make them usable by the read functions again */ ++void /* PRIVATE */ ++png_read_reset(png_structp png_ptr) ++{ ++ png_ptr->mode &= ~PNG_HAVE_IDAT; ++ png_ptr->mode &= ~PNG_AFTER_IDAT; ++ png_ptr->row_number = 0; ++ png_ptr->pass = 0; ++} ++ ++void /* PRIVATE */ ++png_read_reinit(png_structp png_ptr, png_infop info_ptr) ++{ ++ png_ptr->width = info_ptr->next_frame_width; ++ png_ptr->height = info_ptr->next_frame_height; ++ png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth,png_ptr->width); ++ png_ptr->info_rowbytes = PNG_ROWBYTES(info_ptr->pixel_depth, ++ png_ptr->width); ++ if (png_ptr->prev_row != NULL) ++ memset(png_ptr->prev_row, 0, png_ptr->rowbytes + 1); ++} ++ ++#ifdef PNG_PROGRESSIVE_READ_SUPPORTED ++/* same as png_read_reset() but for the progressive reader */ ++void /* PRIVATE */ ++png_progressive_read_reset(png_structp png_ptr) ++{ ++#ifdef PNG_READ_INTERLACING_SUPPORTED ++ /* Arrays to facilitate easy interlacing - use pass (0 - 6) as index */ ++ ++ /* Start of interlace block */ ++ static PNG_CONST png_byte png_pass_start[] = {0, 4, 0, 2, 0, 1, 0}; ++ ++ /* Offset to next interlace block */ ++ static PNG_CONST png_byte png_pass_inc[] = {8, 8, 4, 4, 2, 2, 1}; ++ ++ /* Start of interlace block in the y direction */ ++ static PNG_CONST png_byte png_pass_ystart[] = {0, 0, 4, 0, 2, 0, 1}; ++ ++ /* Offset to next interlace block in the y direction */ ++ static PNG_CONST png_byte png_pass_yinc[] = {8, 8, 8, 4, 4, 2, 2}; ++ ++ if (png_ptr->interlaced != 0) ++ { ++ if ((png_ptr->transformations & PNG_INTERLACE) == 0) ++ png_ptr->num_rows = (png_ptr->height + png_pass_yinc[0] - 1 - ++ png_pass_ystart[0]) / png_pass_yinc[0]; ++ else ++ png_ptr->num_rows = png_ptr->height; ++ ++ png_ptr->iwidth = (png_ptr->width + ++ png_pass_inc[png_ptr->pass] - 1 - ++ png_pass_start[png_ptr->pass]) / ++ png_pass_inc[png_ptr->pass]; ++ } ++ else ++#endif /* READ_INTERLACING */ ++ { ++ png_ptr->num_rows = png_ptr->height; ++ png_ptr->iwidth = png_ptr->width; ++ } ++ png_ptr->flags &= ~PNG_FLAG_ZSTREAM_ENDED; ++ if (inflateReset(&(png_ptr->zstream)) != Z_OK) ++ png_error(png_ptr, "inflateReset failed"); ++ png_ptr->zstream.avail_in = 0; ++ png_ptr->zstream.next_in = 0; ++ png_ptr->zstream.next_out = png_ptr->row_buf; ++ png_ptr->zstream.avail_out = (uInt)PNG_ROWBYTES(png_ptr->pixel_depth, ++ png_ptr->iwidth) + 1; ++} ++#endif /* PROGRESSIVE_READ */ ++#endif /* READ_APNG */ + #endif /* READ */ +Index: pngwutil.c +=================================================================== +--- pngwutil.c ++++ pngwutil.c +@@ -822,6 +822,11 @@ + /* Write the chunk */ + png_write_complete_chunk(png_ptr, png_IHDR, buf, (png_size_t)13); + ++#ifdef PNG_WRITE_APNG_SUPPORTED ++ png_ptr->first_frame_width = width; ++ png_ptr->first_frame_height = height; ++#endif ++ + if ((png_ptr->do_filter) == PNG_NO_FILTERS) + { + if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE || +@@ -1004,7 +1009,17 @@ + #endif + + if (size > 0) ++#ifdef PNG_WRITE_APNG_SUPPORTED ++ { ++ if (png_ptr->num_frames_written == 0) ++#endif + png_write_complete_chunk(png_ptr, png_IDAT, data, size); ++#ifdef PNG_WRITE_APNG_SUPPORTED ++ else ++ png_write_fdAT(png_ptr, data, size); ++ } ++#endif /* WRITE_APNG */ ++ + png_ptr->mode |= PNG_HAVE_IDAT; + + png_ptr->zstream.next_out = data; +@@ -1051,7 +1066,17 @@ + #endif + + if (size > 0) ++#ifdef PNG_WRITE_APNG_SUPPORTED ++ { ++ if (png_ptr->num_frames_written == 0) ++#endif + png_write_complete_chunk(png_ptr, png_IDAT, data, size); ++#ifdef PNG_WRITE_APNG_SUPPORTED ++ else ++ png_write_fdAT(png_ptr, data, size); ++ } ++#endif /* WRITE_APNG */ ++ + png_ptr->zstream.avail_out = 0; + png_ptr->zstream.next_out = NULL; + png_ptr->mode |= PNG_HAVE_IDAT | PNG_AFTER_IDAT; +@@ -1865,6 +1890,82 @@ + } + #endif + ++#ifdef PNG_WRITE_APNG_SUPPORTED ++void /* PRIVATE */ ++png_write_acTL(png_structp png_ptr, ++ png_uint_32 num_frames, png_uint_32 num_plays) ++{ ++ png_byte buf[8]; ++ ++ png_debug(1, "in png_write_acTL"); ++ ++ png_ptr->num_frames_to_write = num_frames; ++ ++ if ((png_ptr->apng_flags & PNG_FIRST_FRAME_HIDDEN) != 0) ++ num_frames--; ++ ++ png_save_uint_32(buf, num_frames); ++ png_save_uint_32(buf + 4, num_plays); ++ ++ png_write_complete_chunk(png_ptr, png_acTL, buf, (png_size_t)8); ++} ++ ++void /* PRIVATE */ ++png_write_fcTL(png_structp png_ptr, png_uint_32 width, png_uint_32 height, ++ png_uint_32 x_offset, png_uint_32 y_offset, ++ png_uint_16 delay_num, png_uint_16 delay_den, png_byte dispose_op, ++ png_byte blend_op) ++{ ++ png_byte buf[26]; ++ ++ png_debug(1, "in png_write_fcTL"); ++ ++ if (png_ptr->num_frames_written == 0 && (x_offset != 0 || y_offset != 0)) ++ png_error(png_ptr, "x and/or y offset for the first frame aren't 0"); ++ if (png_ptr->num_frames_written == 0 && ++ (width != png_ptr->first_frame_width || ++ height != png_ptr->first_frame_height)) ++ png_error(png_ptr, "width and/or height in the first frame's fcTL " ++ "don't match the ones in IHDR"); ++ ++ /* more error checking */ ++ png_ensure_fcTL_is_valid(png_ptr, width, height, x_offset, y_offset, ++ delay_num, delay_den, dispose_op, blend_op); ++ ++ png_save_uint_32(buf, png_ptr->next_seq_num); ++ png_save_uint_32(buf + 4, width); ++ png_save_uint_32(buf + 8, height); ++ png_save_uint_32(buf + 12, x_offset); ++ png_save_uint_32(buf + 16, y_offset); ++ png_save_uint_16(buf + 20, delay_num); ++ png_save_uint_16(buf + 22, delay_den); ++ buf[24] = dispose_op; ++ buf[25] = blend_op; ++ ++ png_write_complete_chunk(png_ptr, png_fcTL, buf, (png_size_t)26); ++ ++ png_ptr->next_seq_num++; ++} ++ ++void /* PRIVATE */ ++png_write_fdAT(png_structp png_ptr, ++ png_const_bytep data, png_size_t length) ++{ ++ png_byte buf[4]; ++ ++ png_write_chunk_header(png_ptr, png_fdAT, (png_uint_32)(4 + length)); ++ ++ png_save_uint_32(buf, png_ptr->next_seq_num); ++ png_write_chunk_data(png_ptr, buf, 4); ++ ++ png_write_chunk_data(png_ptr, data, length); ++ ++ png_write_chunk_end(png_ptr); ++ ++ png_ptr->next_seq_num++; ++} ++#endif /* WRITE_APNG */ ++ + /* Initializes the row writing capability of libpng */ + void /* PRIVATE */ + png_write_start_row(png_structrp png_ptr) +@@ -2759,4 +2860,39 @@ + } + #endif /* WRITE_FLUSH */ + } ++ ++#ifdef PNG_WRITE_APNG_SUPPORTED ++void /* PRIVATE */ ++png_write_reset(png_structp png_ptr) ++{ ++ png_ptr->row_number = 0; ++ png_ptr->pass = 0; ++ png_ptr->mode &= ~PNG_HAVE_IDAT; ++} ++ ++void /* PRIVATE */ ++png_write_reinit(png_structp png_ptr, png_infop info_ptr, ++ png_uint_32 width, png_uint_32 height) ++{ ++ if (png_ptr->num_frames_written == 0 && ++ (width != png_ptr->first_frame_width || ++ height != png_ptr->first_frame_height)) ++ png_error(png_ptr, "width and/or height in the first frame's fcTL " ++ "don't match the ones in IHDR"); ++ if (width > png_ptr->first_frame_width || ++ height > png_ptr->first_frame_height) ++ png_error(png_ptr, "width and/or height for a frame greater than " ++ "the ones in IHDR"); ++ ++ png_set_IHDR(png_ptr, info_ptr, width, height, ++ info_ptr->bit_depth, info_ptr->color_type, ++ info_ptr->interlace_type, info_ptr->compression_type, ++ info_ptr->filter_type); ++ ++ png_ptr->width = width; ++ png_ptr->height = height; ++ png_ptr->rowbytes = PNG_ROWBYTES(png_ptr->pixel_depth, width); ++ png_ptr->usr_width = png_ptr->width; ++} ++#endif /* WRITE_APNG */ + #endif /* WRITE */ +Index: scripts/symbols.def +=================================================================== +--- scripts/symbols.def ++++ scripts/symbols.def +@@ -250,3 +250,23 @@ + png_get_palette_max @243 + png_set_option @244 + png_image_write_to_memory @245 ++ png_get_acTL @246 ++ png_set_acTL @247 ++ png_get_num_frames @248 ++ png_get_num_plays @249 ++ png_get_next_frame_fcTL @250 ++ png_set_next_frame_fcTL @251 ++ png_get_next_frame_width @252 ++ png_get_next_frame_height @253 ++ png_get_next_frame_x_offset @254 ++ png_get_next_frame_y_offset @255 ++ png_get_next_frame_delay_num @256 ++ png_get_next_frame_delay_den @257 ++ png_get_next_frame_dispose_op @258 ++ png_get_next_frame_blend_op @259 ++ png_get_first_frame_is_hidden @260 ++ png_set_first_frame_is_hidden @261 ++ png_read_frame_head @262 ++ png_set_progressive_frame_fn @263 ++ png_write_frame_head @264 ++ png_write_frame_tail @265 -- 2.26.2 From d469aaa07e48a58b6fdbd600bc249466385c49b9 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Sat, 2 Sep 2017 14:19:37 +0200 Subject: [PATCH 02/16] firefox: initial import --- firefox/.footprint | 6024 +++++++++++++++++++++++++++++ firefox/.md5sum | 3 + firefox/Pkgfile | 63 + firefox/README | 3 + firefox/firefox-install-dir.patch | 19 + firefox/firefox.desktop | 8 + 6 files changed, 6120 insertions(+) create mode 100644 firefox/.footprint create mode 100644 firefox/.md5sum create mode 100644 firefox/Pkgfile create mode 100644 firefox/README create mode 100644 firefox/firefox-install-dir.patch create mode 100644 firefox/firefox.desktop diff --git a/firefox/.footprint b/firefox/.footprint new file mode 100644 index 0000000..487c998 --- /dev/null +++ b/firefox/.footprint @@ -0,0 +1,6024 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/revdep.d/ +-rw-r--r-- root/root etc/revdep.d/firefox +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +lrwxrwxrwx root/root usr/bin/firefox -> /usr/lib/firefox/firefox +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/firefox/ +-rw-r--r-- root/root usr/include/firefox/ADTSDecoder.h +-rw-r--r-- root/root usr/include/firefox/ADTSDemuxer.h +-rw-r--r-- root/root usr/include/firefox/AbstractMediaDecoder.h +-rw-r--r-- root/root usr/include/firefox/AccEvent.h +-rw-r--r-- root/root usr/include/firefox/AccurateSeekTask.h +-rw-r--r-- root/root usr/include/firefox/ActiveLayerTracker.h +-rw-r--r-- root/root usr/include/firefox/AgnosticDecoderModule.h +-rw-r--r-- root/root usr/include/firefox/AlignedTArray.h +-rw-r--r-- root/root usr/include/firefox/AndroidSurfaceTexture.h +-rw-r--r-- root/root usr/include/firefox/AnimationCommon.h +-rw-r--r-- root/root usr/include/firefox/AsyncEventRunner.h +-rw-r--r-- root/root usr/include/firefox/AsyncScrollBase.h +-rw-r--r-- root/root usr/include/firefox/AudioBlock.h +-rw-r--r-- root/root usr/include/firefox/AudioBufferUtils.h +-rw-r--r-- root/root usr/include/firefox/AudioChannelAgent.h +-rw-r--r-- root/root usr/include/firefox/AudioChannelFormat.h +-rw-r--r-- root/root usr/include/firefox/AudioChannelService.h +-rw-r--r-- root/root usr/include/firefox/AudioCompactor.h +-rw-r--r-- root/root usr/include/firefox/AudioConverter.h +-rw-r--r-- root/root usr/include/firefox/AudioEventTimeline.h +-rw-r--r-- root/root usr/include/firefox/AudioMixer.h +-rw-r--r-- root/root usr/include/firefox/AudioNodeEngine.h +-rw-r--r-- root/root usr/include/firefox/AudioNodeExternalInputStream.h +-rw-r--r-- root/root usr/include/firefox/AudioNodeStream.h +-rw-r--r-- root/root usr/include/firefox/AudioOutputObserver.h +-rw-r--r-- root/root usr/include/firefox/AudioPacketizer.h +-rw-r--r-- root/root usr/include/firefox/AudioParamTimeline.h +-rw-r--r-- root/root usr/include/firefox/AudioSampleFormat.h +-rw-r--r-- root/root usr/include/firefox/AudioSegment.h +-rw-r--r-- root/root usr/include/firefox/AudioStream.h +-rw-r--r-- root/root usr/include/firefox/AutoTaskQueue.h +-rw-r--r-- root/root usr/include/firefox/AutocompleteFieldList.h +-rw-r--r-- root/root usr/include/firefox/BRNameMatchingPolicy.h +-rw-r--r-- root/root usr/include/firefox/BackstagePass.h +-rw-r--r-- root/root usr/include/firefox/BasicCanvasLayer.h +-rw-r--r-- root/root usr/include/firefox/BasicImplData.h +-rw-r--r-- root/root usr/include/firefox/BasicLayers.h +-rw-r--r-- root/root usr/include/firefox/BasicLayersImpl.h +-rw-r--r-- root/root usr/include/firefox/BasicPaintedLayer.h +-rw-r--r-- root/root usr/include/firefox/Benchmark.h +-rw-r--r-- root/root usr/include/firefox/BufferMediaResource.h +-rw-r--r-- root/root usr/include/firefox/CTVerifyResult.h +-rw-r--r-- root/root usr/include/firefox/CacheObserver.h +-rw-r--r-- root/root usr/include/firefox/CacheStorageService.h +-rw-r--r-- root/root usr/include/firefox/CamerasChild.h +-rw-r--r-- root/root usr/include/firefox/CamerasParent.h +-rw-r--r-- root/root usr/include/firefox/CaretAssociationHint.h +-rw-r--r-- root/root usr/include/firefox/CertVerifier.h +-rw-r--r-- root/root usr/include/firefox/ClientCanvasLayer.h +-rw-r--r-- root/root usr/include/firefox/ClientContainerLayer.h +-rw-r--r-- root/root usr/include/firefox/ClientLayerManager.h +-rw-r--r-- root/root usr/include/firefox/ClientPaintedLayer.h +-rw-r--r-- root/root usr/include/firefox/ClientTiledPaintedLayer.h +-rw-r--r-- root/root usr/include/firefox/CodeAddressService.h +-rw-r--r-- root/root usr/include/firefox/Composer2D.h +-rw-r--r-- root/root usr/include/firefox/CompositableHost.h +-rw-r--r-- root/root usr/include/firefox/CompositorTypes.h +-rw-r--r-- root/root usr/include/firefox/ContainerWriter.h +-rw-r--r-- root/root usr/include/firefox/ContentHandlerService.h +-rw-r--r-- root/root usr/include/firefox/ContextStateTracker.h +-rw-r--r-- root/root usr/include/firefox/CopyableCanvasLayer.h +-rw-r--r-- root/root usr/include/firefox/CounterStyleManager.h +-rw-r--r-- root/root usr/include/firefox/Crypto.h +-rw-r--r-- root/root usr/include/firefox/CryptoTask.h +-rw-r--r-- root/root usr/include/firefox/CubebUtils.h +-rw-r--r-- root/root usr/include/firefox/D3D9SurfaceImage.h +-rw-r--r-- root/root usr/include/firefox/DOMMediaStream.h +-rw-r--r-- root/root usr/include/firefox/DecoderDoctorDiagnostics.h +-rw-r--r-- root/root usr/include/firefox/DecoderTraits.h +-rw-r--r-- root/root usr/include/firefox/DecomposeIntoNoRepeatTriangles.h +-rw-r--r-- root/root usr/include/firefox/DiskSpaceWatcher.h +-rw-r--r-- root/root usr/include/firefox/DisplayItemClip.h +-rw-r--r-- root/root usr/include/firefox/DisplayItemScrollClip.h +-rw-r--r-- root/root usr/include/firefox/DisplayListClipState.h +-rw-r--r-- root/root usr/include/firefox/DrawMode.h +-rw-r--r-- root/root usr/include/firefox/DrawResult.h +-rw-r--r-- root/root usr/include/firefox/DriverCrashGuard.h +-rw-r--r-- root/root usr/include/firefox/EGLUtils.h +-rw-r--r-- root/root usr/include/firefox/EMEAudioDecoder.h +-rw-r--r-- root/root usr/include/firefox/EMEDecoderModule.h +-rw-r--r-- root/root usr/include/firefox/EMEVideoDecoder.h +-rw-r--r-- root/root usr/include/firefox/EncodedBufferCache.h +-rw-r--r-- root/root usr/include/firefox/EncodedFrameContainer.h +-rw-r--r-- root/root usr/include/firefox/Entries.h +-rw-r--r-- root/root usr/include/firefox/ErrorList.h +-rw-r--r-- root/root usr/include/firefox/EventTracer.h +-rw-r--r-- root/root usr/include/firefox/FFmpegRuntimeLinker.h +-rw-r--r-- root/root usr/include/firefox/FileBlockCache.h +-rw-r--r-- root/root usr/include/firefox/FilterSupport.h +-rw-r--r-- root/root usr/include/firefox/FlacDecoder.h +-rw-r--r-- root/root usr/include/firefox/FlacDemuxer.h +-rw-r--r-- root/root usr/include/firefox/FlacFrameParser.h +-rw-r--r-- root/root usr/include/firefox/ForceDiscreteGPUHelperCGL.h +-rw-r--r-- root/root usr/include/firefox/FrameLayerBuilder.h +-rw-r--r-- root/root usr/include/firefox/FrameMetrics.h +-rw-r--r-- root/root usr/include/firefox/FramePropertyTable.h +-rw-r--r-- root/root usr/include/firefox/FrameStatistics.h +-rw-r--r-- root/root usr/include/firefox/FuzzingWrapper.h +-rw-r--r-- root/root usr/include/firefox/GLBlitHelper.h +-rw-r--r-- root/root usr/include/firefox/GLConsts.h +-rw-r--r-- root/root usr/include/firefox/GLContext.h +-rw-r--r-- root/root usr/include/firefox/GLContextEGL.h +-rw-r--r-- root/root usr/include/firefox/GLContextGLX.h +-rw-r--r-- root/root usr/include/firefox/GLContextProvider.h +-rw-r--r-- root/root usr/include/firefox/GLContextProviderImpl.h +-rw-r--r-- root/root usr/include/firefox/GLContextSymbols.h +-rw-r--r-- root/root usr/include/firefox/GLContextTypes.h +-rw-r--r-- root/root usr/include/firefox/GLDefs.h +-rw-r--r-- root/root usr/include/firefox/GLImages.h +-rw-r--r-- root/root usr/include/firefox/GLLibraryEGL.h +-rw-r--r-- root/root usr/include/firefox/GLLibraryLoader.h +-rw-r--r-- root/root usr/include/firefox/GLReadTexImageHelper.h +-rw-r--r-- root/root usr/include/firefox/GLScreenBuffer.h +-rw-r--r-- root/root usr/include/firefox/GLTextureImage.h +-rw-r--r-- root/root usr/include/firefox/GLTypes.h +-rw-r--r-- root/root usr/include/firefox/GLUploadHelpers.h +-rw-r--r-- root/root usr/include/firefox/GLXLibrary.h +-rw-r--r-- root/root usr/include/firefox/GMPAudioDecoder.h +-rw-r--r-- root/root usr/include/firefox/GMPAudioDecoderChild.h +-rw-r--r-- root/root usr/include/firefox/GMPAudioDecoderParent.h +-rw-r--r-- root/root usr/include/firefox/GMPAudioDecoderProxy.h +-rw-r--r-- root/root usr/include/firefox/GMPAudioHost.h +-rw-r--r-- root/root usr/include/firefox/GMPCDMCallbackProxy.h +-rw-r--r-- root/root usr/include/firefox/GMPCDMProxy.h +-rw-r--r-- root/root usr/include/firefox/GMPCallbackBase.h +-rw-r--r-- root/root usr/include/firefox/GMPChild.h +-rw-r--r-- root/root usr/include/firefox/GMPContentChild.h +-rw-r--r-- root/root usr/include/firefox/GMPContentParent.h +-rw-r--r-- root/root usr/include/firefox/GMPCrashHelperHolder.h +-rw-r--r-- root/root usr/include/firefox/GMPDecoderModule.h +-rw-r--r-- root/root usr/include/firefox/GMPDecryptorChild.h +-rw-r--r-- root/root usr/include/firefox/GMPDecryptorParent.h +-rw-r--r-- root/root usr/include/firefox/GMPDecryptorProxy.h +-rw-r--r-- root/root usr/include/firefox/GMPDeviceBinding.h +-rw-r--r-- root/root usr/include/firefox/GMPEncryptedBufferDataImpl.h +-rw-r--r-- root/root usr/include/firefox/GMPLoader.h +-rw-r--r-- root/root usr/include/firefox/GMPMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/GMPParent.h +-rw-r--r-- root/root usr/include/firefox/GMPPlatform.h +-rw-r--r-- root/root usr/include/firefox/GMPProcessChild.h +-rw-r--r-- root/root usr/include/firefox/GMPProcessParent.h +-rw-r--r-- root/root usr/include/firefox/GMPService.h +-rw-r--r-- root/root usr/include/firefox/GMPServiceChild.h +-rw-r--r-- root/root usr/include/firefox/GMPServiceParent.h +-rw-r--r-- root/root usr/include/firefox/GMPSharedMemManager.h +-rw-r--r-- root/root usr/include/firefox/GMPStorage.h +-rw-r--r-- root/root usr/include/firefox/GMPStorageChild.h +-rw-r--r-- root/root usr/include/firefox/GMPStorageParent.h +-rw-r--r-- root/root usr/include/firefox/GMPTimerChild.h +-rw-r--r-- root/root usr/include/firefox/GMPTimerParent.h +-rw-r--r-- root/root usr/include/firefox/GMPUtils.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoDecoder.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoDecoderChild.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoDecoderParent.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoDecoderProxy.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoEncodedFrameImpl.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoEncoderChild.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoEncoderParent.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoEncoderProxy.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoHost.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoPlaneImpl.h +-rw-r--r-- root/root usr/include/firefox/GMPVideoi420FrameImpl.h +-rw-r--r-- root/root usr/include/firefox/GPUVideoImage.h +-rw-r--r-- root/root usr/include/firefox/GeckoProfiler.h +-rw-r--r-- root/root usr/include/firefox/GfxDriverInfo.h +-rw-r--r-- root/root usr/include/firefox/GfxInfoBase.h +-rw-r--r-- root/root usr/include/firefox/GfxInfoCollector.h +-rw-r--r-- root/root usr/include/firefox/GfxTexturesReporter.h +-rw-r--r-- root/root usr/include/firefox/GreekCasing.h +-rw-r--r-- root/root usr/include/firefox/H264Converter.h +-rw-r--r-- root/root usr/include/firefox/HTMLSplitOnSpacesTokenizer.h +-rw-r--r-- root/root usr/include/firefox/HeapCopyOfStackArray.h +-rw-r--r-- root/root usr/include/firefox/ICUUtils.h +-rw-r--r-- root/root usr/include/firefox/IJSDebugger.h +-rw-r--r-- root/root usr/include/firefox/IMFYCbCrImage.h +-rw-r--r-- root/root usr/include/firefox/IPeerConnection.h +-rw-r--r-- root/root usr/include/firefox/IProgressObserver.h +-rw-r--r-- root/root usr/include/firefox/IframeSandboxKeywordList.h +-rw-r--r-- root/root usr/include/firefox/ImageCacheKey.h +-rw-r--r-- root/root usr/include/firefox/ImageContainer.h +-rw-r--r-- root/root usr/include/firefox/ImageHost.h +-rw-r--r-- root/root usr/include/firefox/ImageLayers.h +-rw-r--r-- root/root usr/include/firefox/ImageLogging.h +-rw-r--r-- root/root usr/include/firefox/ImageOps.h +-rw-r--r-- root/root usr/include/firefox/ImageRegion.h +-rw-r--r-- root/root usr/include/firefox/ImageTypes.h +-rw-r--r-- root/root usr/include/firefox/InputData.h +-rw-r--r-- root/root usr/include/firefox/Intervals.h +-rw-r--r-- root/root usr/include/firefox/IrishCasing.h +-rw-r--r-- root/root usr/include/firefox/Latency.h +-rw-r--r-- root/root usr/include/firefox/LayerScope.h +-rw-r--r-- root/root usr/include/firefox/LayerScopePacket.pb.h +-rw-r--r-- root/root usr/include/firefox/LayerSorter.h +-rw-r--r-- root/root usr/include/firefox/LayerState.h +-rw-r--r-- root/root usr/include/firefox/LayerTreeInvalidation.h +-rw-r--r-- root/root usr/include/firefox/LayerUserData.h +-rw-r--r-- root/root usr/include/firefox/Layers.h +-rw-r--r-- root/root usr/include/firefox/LayersLogging.h +-rw-r--r-- root/root usr/include/firefox/LayersTypes.h +-rw-r--r-- root/root usr/include/firefox/LayoutLogging.h +-rw-r--r-- root/root usr/include/firefox/LoadManager.h +-rw-r--r-- root/root usr/include/firefox/LoadManagerFactory.h +-rw-r--r-- root/root usr/include/firefox/LoadMonitor.h +-rw-r--r-- root/root usr/include/firefox/LookupCache.h +-rw-r--r-- root/root usr/include/firefox/LookupCacheV4.h +-rw-r--r-- root/root usr/include/firefox/MP3Decoder.h +-rw-r--r-- root/root usr/include/firefox/MP3Demuxer.h +-rw-r--r-- root/root usr/include/firefox/MP3FrameParser.h +-rw-r--r-- root/root usr/include/firefox/MP4Decoder.h +-rw-r--r-- root/root usr/include/firefox/MP4Demuxer.h +-rw-r--r-- root/root usr/include/firefox/MP4Stream.h +-rw-r--r-- root/root usr/include/firefox/MainThreadUtils.h +-rw-r--r-- root/root usr/include/firefox/MediaBufferDecoder.h +-rw-r--r-- root/root usr/include/firefox/MediaCache.h +-rw-r--r-- root/root usr/include/firefox/MediaContentType.h +-rw-r--r-- root/root usr/include/firefox/MediaData.h +-rw-r--r-- root/root usr/include/firefox/MediaDataDecoderProxy.h +-rw-r--r-- root/root usr/include/firefox/MediaDataDemuxer.h +-rw-r--r-- root/root usr/include/firefox/MediaDecoder.h +-rw-r--r-- root/root usr/include/firefox/MediaDecoderOwner.h +-rw-r--r-- root/root usr/include/firefox/MediaDecoderReader.h +-rw-r--r-- root/root usr/include/firefox/MediaDecoderReaderWrapper.h +-rw-r--r-- root/root usr/include/firefox/MediaDecoderStateMachine.h +-rw-r--r-- root/root usr/include/firefox/MediaEncoder.h +-rw-r--r-- root/root usr/include/firefox/MediaEngine.h +-rw-r--r-- root/root usr/include/firefox/MediaEngineCameraVideoSource.h +-rw-r--r-- root/root usr/include/firefox/MediaEngineDefault.h +-rw-r--r-- root/root usr/include/firefox/MediaEngineRemoteVideoSource.h +-rw-r--r-- root/root usr/include/firefox/MediaEngineWebRTC.h +-rw-r--r-- root/root usr/include/firefox/MediaEventSource.h +-rw-r--r-- root/root usr/include/firefox/MediaFormatReader.h +-rw-r--r-- root/root usr/include/firefox/MediaInfo.h +-rw-r--r-- root/root usr/include/firefox/MediaMetadataManager.h +-rw-r--r-- root/root usr/include/firefox/MediaPrefs.h +-rw-r--r-- root/root usr/include/firefox/MediaQueue.h +-rw-r--r-- root/root usr/include/firefox/MediaRecorder.h +-rw-r--r-- root/root usr/include/firefox/MediaResource.h +-rw-r--r-- root/root usr/include/firefox/MediaResourceCallback.h +-rw-r--r-- root/root usr/include/firefox/MediaResult.h +-rw-r--r-- root/root usr/include/firefox/MediaSegment.h +-rw-r--r-- root/root usr/include/firefox/MediaShutdownManager.h +-rw-r--r-- root/root usr/include/firefox/MediaSourceDecoder.h +-rw-r--r-- root/root usr/include/firefox/MediaSourceDemuxer.h +-rw-r--r-- root/root usr/include/firefox/MediaStatistics.h +-rw-r--r-- root/root usr/include/firefox/MediaStreamGraph.h +-rw-r--r-- root/root usr/include/firefox/MediaStreamListener.h +-rw-r--r-- root/root usr/include/firefox/MediaStreamVideoSink.h +-rw-r--r-- root/root usr/include/firefox/MediaTelemetryConstants.h +-rw-r--r-- root/root usr/include/firefox/MediaTimer.h +-rw-r--r-- root/root usr/include/firefox/MediaTrack.h +-rw-r--r-- root/root usr/include/firefox/MediaTrackConstraints.h +-rw-r--r-- root/root usr/include/firefox/MediaTrackList.h +-rw-r--r-- root/root usr/include/firefox/NSSErrorsService.h +-rw-r--r-- root/root usr/include/firefox/NativeFileWatcherNotSupported.h +-rw-r--r-- root/root usr/include/firefox/NesteggPacketHolder.h +-rw-r--r-- root/root usr/include/firefox/NextFrameSeekTask.h +-rw-r--r-- root/root usr/include/firefox/OCSPCache.h +-rw-r--r-- root/root usr/include/firefox/OGLShaderProgram.h +-rw-r--r-- root/root usr/include/firefox/OggCodecState.h +-rw-r--r-- root/root usr/include/firefox/OggCodecStore.h +-rw-r--r-- root/root usr/include/firefox/OggDecoder.h +-rw-r--r-- root/root usr/include/firefox/OggDemuxer.h +-rw-r--r-- root/root usr/include/firefox/OggWriter.h +-rw-r--r-- root/root usr/include/firefox/OmxDecoderModule.h +-rw-r--r-- root/root usr/include/firefox/OpusDecoder.h +-rw-r--r-- root/root usr/include/firefox/OpusParser.h +-rw-r--r-- root/root usr/include/firefox/OpusTrackEncoder.h +-rw-r--r-- root/root usr/include/firefox/Orientation.h +-rw-r--r-- root/root usr/include/firefox/PDMFactory.h +-rw-r--r-- root/root usr/include/firefox/PLDHashTable.h +-rw-r--r-- root/root usr/include/firefox/PingPongRegion.h +-rw-r--r-- root/root usr/include/firefox/PlatformDecoderModule.h +-rw-r--r-- root/root usr/include/firefox/PluginWidgetProxy.h +-rw-r--r-- root/root usr/include/firefox/PrincipalChangeObserver.h +-rw-r--r-- root/root usr/include/firefox/PuppetWidget.h +-rw-r--r-- root/root usr/include/firefox/QueueObject.h +-rw-r--r-- root/root usr/include/firefox/ReadbackLayer.h +-rw-r--r-- root/root usr/include/firefox/RegionBuilder.h +-rw-r--r-- root/root usr/include/firefox/RoundedRect.h +-rw-r--r-- root/root usr/include/firefox/RubyUtils.h +-rw-r--r-- root/root usr/include/firefox/SVGAttrValueWrapper.h +-rw-r--r-- root/root usr/include/firefox/SVGContentUtils.h +-rw-r--r-- root/root usr/include/firefox/SVGImageContext.h +-rw-r--r-- root/root usr/include/firefox/SVGPreserveAspectRatio.h +-rw-r--r-- root/root usr/include/firefox/SVGStringList.h +-rw-r--r-- root/root usr/include/firefox/SamplesWaitingForKey.h +-rw-r--r-- root/root usr/include/firefox/ScopedGLHelpers.h +-rw-r--r-- root/root usr/include/firefox/ScopedNSSTypes.h +-rw-r--r-- root/root usr/include/firefox/ScrollSnap.h +-rw-r--r-- root/root usr/include/firefox/ScrollbarActivity.h +-rw-r--r-- root/root usr/include/firefox/ScrollbarStyles.h +-rw-r--r-- root/root usr/include/firefox/SeekJob.h +-rw-r--r-- root/root usr/include/firefox/SeekTarget.h +-rw-r--r-- root/root usr/include/firefox/SeekTask.h +-rw-r--r-- root/root usr/include/firefox/SelfRef.h +-rw-r--r-- root/root usr/include/firefox/SerializedLoadContext.h +-rw-r--r-- root/root usr/include/firefox/SharedBuffer.h +-rw-r--r-- root/root usr/include/firefox/SharedCertVerifier.h +-rw-r--r-- root/root usr/include/firefox/SharedSurface.h +-rw-r--r-- root/root usr/include/firefox/SharedSurfaceEGL.h +-rw-r--r-- root/root usr/include/firefox/SharedSurfaceGL.h +-rw-r--r-- root/root usr/include/firefox/SharedSurfaceGLX.h +-rw-r--r-- root/root usr/include/firefox/SignedCertificateTimestamp.h +-rw-r--r-- root/root usr/include/firefox/SignedTreeHead.h +-rwxr-xr-x root/root usr/include/firefox/SkiaGLGlue.h +-rw-r--r-- root/root usr/include/firefox/SlicedInputStream.h +-rw-r--r-- root/root usr/include/firefox/SoftwareVsyncSource.h +-rw-r--r-- root/root usr/include/firefox/SourceBufferAttributes.h +-rw-r--r-- root/root usr/include/firefox/SourceBufferTask.h +-rw-r--r-- root/root usr/include/firefox/SpecialSystemDirectory.h +-rw-r--r-- root/root usr/include/firefox/StackArena.h +-rw-r--r-- root/root usr/include/firefox/StreamTracks.h +-rw-r--r-- root/root usr/include/firefox/SurfaceCacheUtils.h +-rw-r--r-- root/root usr/include/firefox/SurfaceTypes.h +-rw-r--r-- root/root usr/include/firefox/TextureGarbageBin.h +-rw-r--r-- root/root usr/include/firefox/TexturePoolOGL.h +-rw-r--r-- root/root usr/include/firefox/TheoraDecoder.h +-rw-r--r-- root/root usr/include/firefox/ThreadPoolCOMListener.h +-rw-r--r-- root/root usr/include/firefox/ThreadSafeRefcountingWithMainThreadDestruction.h +-rw-r--r-- root/root usr/include/firefox/ThreeDPoint.h +-rw-r--r-- root/root usr/include/firefox/TiledLayerBuffer.h +-rw-r--r-- root/root usr/include/firefox/TimeUnits.h +-rw-r--r-- root/root usr/include/firefox/TrackBuffersManager.h +-rw-r--r-- root/root usr/include/firefox/TrackEncoder.h +-rw-r--r-- root/root usr/include/firefox/TrackMetadataBase.h +-rw-r--r-- root/root usr/include/firefox/TrackUnionStream.h +-rw-r--r-- root/root usr/include/firefox/UnitTransforms.h +-rw-r--r-- root/root usr/include/firefox/Units.h +-rw-r--r-- root/root usr/include/firefox/VP8TrackEncoder.h +-rw-r--r-- root/root usr/include/firefox/VPXDecoder.h +-rw-r--r-- root/root usr/include/firefox/VRDisplayClient.h +-rw-r--r-- root/root usr/include/firefox/VRDisplayPresentation.h +-rw-r--r-- root/root usr/include/firefox/VRLayerChild.h +-rw-r--r-- root/root usr/include/firefox/VRManager.h +-rw-r--r-- root/root usr/include/firefox/VRManagerChild.h +-rw-r--r-- root/root usr/include/firefox/VRManagerParent.h +-rw-r--r-- root/root usr/include/firefox/VRMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/VariableLengthPrefixSet.h +-rw-r--r-- root/root usr/include/firefox/VideoFrameContainer.h +-rw-r--r-- root/root usr/include/firefox/VideoLimits.h +-rw-r--r-- root/root usr/include/firefox/VideoSegment.h +-rw-r--r-- root/root usr/include/firefox/VideoUtils.h +-rw-r--r-- root/root usr/include/firefox/Visibility.h +-rw-r--r-- root/root usr/include/firefox/VorbisDecoder.h +-rw-r--r-- root/root usr/include/firefox/VorbisUtils.h +-rw-r--r-- root/root usr/include/firefox/VsyncSource.h +-rw-r--r-- root/root usr/include/firefox/WaveDecoder.h +-rw-r--r-- root/root usr/include/firefox/WaveDemuxer.h +-rw-r--r-- root/root usr/include/firefox/WebAudioUtils.h +-rw-r--r-- root/root usr/include/firefox/WebMBufferedParser.h +-rw-r--r-- root/root usr/include/firefox/WebMDecoder.h +-rw-r--r-- root/root usr/include/firefox/WebMDemuxer.h +-rw-r--r-- root/root usr/include/firefox/WebMWriter.h +-rw-r--r-- root/root usr/include/firefox/WordMovementType.h +-rw-r--r-- root/root usr/include/firefox/WrapperFactory.h +-rw-r--r-- root/root usr/include/firefox/X11UndefineNone.h +-rw-r--r-- root/root usr/include/firefox/XPCJSMemoryReporter.h +-rw-r--r-- root/root usr/include/firefox/XREChildData.h +-rw-r--r-- root/root usr/include/firefox/XREShellData.h +-rw-r--r-- root/root usr/include/firefox/XiphExtradata.h +-rw-r--r-- root/root usr/include/firefox/YCbCrUtils.h +-rw-r--r-- root/root usr/include/firefox/amIAddonManager.h +-rw-r--r-- root/root usr/include/firefox/amIAddonPathService.h +-rw-r--r-- root/root usr/include/firefox/amIWebInstallListener.h +-rw-r--r-- root/root usr/include/firefox/amIWebInstaller.h +drwxr-xr-x root/root usr/include/firefox/angle/ +drwxr-xr-x root/root usr/include/firefox/angle/KHR/ +-rwxr-xr-x root/root usr/include/firefox/angle/KHR/khrplatform.h +-rwxr-xr-x root/root usr/include/firefox/angle/Platform.h +-rwxr-xr-x root/root usr/include/firefox/angle/ShaderLang.h +-rwxr-xr-x root/root usr/include/firefox/angle/ShaderVars.h +-rw-r--r-- root/root usr/include/firefox/bit_reader.h +-rw-r--r-- root/root usr/include/firefox/buildid.h +drwxr-xr-x root/root usr/include/firefox/cubeb/ +-rw-r--r-- root/root usr/include/firefox/cubeb/cubeb.h +-rw-r--r-- root/root usr/include/firefox/cubeb/cubeb_export.h +-rw-r--r-- root/root usr/include/firefox/decode.h +drwxr-xr-x root/root usr/include/firefox/demuxer/ +-rw-r--r-- root/root usr/include/firefox/demuxer/TrackDemuxer.h +-rw-r--r-- root/root usr/include/firefox/domstubs.h +-rw-r--r-- root/root usr/include/firefox/expat.h +-rw-r--r-- root/root usr/include/firefox/expat_config.h +-rw-r--r-- root/root usr/include/firefox/expat_external.h +-rw-r--r-- root/root usr/include/firefox/extIApplication.h +-rw-r--r-- root/root usr/include/firefox/fdlibm.h +-rw-r--r-- root/root usr/include/firefox/ftpCore.h +-rw-r--r-- root/root usr/include/firefox/gfx2DGlue.h +-rw-r--r-- root/root usr/include/firefox/gfxASurface.h +-rw-r--r-- root/root usr/include/firefox/gfxAlphaRecovery.h +-rw-r--r-- root/root usr/include/firefox/gfxBaseSharedMemorySurface.h +-rw-r--r-- root/root usr/include/firefox/gfxBlur.h +-rw-r--r-- root/root usr/include/firefox/gfxColor.h +-rw-r--r-- root/root usr/include/firefox/gfxConfig.h +-rw-r--r-- root/root usr/include/firefox/gfxContext.h +-rw-r--r-- root/root usr/include/firefox/gfxCrashReporterUtils.h +-rw-r--r-- root/root usr/include/firefox/gfxDrawable.h +-rw-r--r-- root/root usr/include/firefox/gfxEnv.h +-rw-r--r-- root/root usr/include/firefox/gfxFT2FontBase.h +-rw-r--r-- root/root usr/include/firefox/gfxFailure.h +-rw-r--r-- root/root usr/include/firefox/gfxFallback.h +-rw-r--r-- root/root usr/include/firefox/gfxFeature.h +-rw-r--r-- root/root usr/include/firefox/gfxFont.h +-rw-r--r-- root/root usr/include/firefox/gfxFontConstants.h +-rw-r--r-- root/root usr/include/firefox/gfxFontEntry.h +-rw-r--r-- root/root usr/include/firefox/gfxFontFamilyList.h +-rw-r--r-- root/root usr/include/firefox/gfxFontFeatures.h +-rw-r--r-- root/root usr/include/firefox/gfxFontInfoLoader.h +-rw-r--r-- root/root usr/include/firefox/gfxFontPrefLangList.h +-rw-r--r-- root/root usr/include/firefox/gfxFontTest.h +-rw-r--r-- root/root usr/include/firefox/gfxFontUtils.h +-rw-r--r-- root/root usr/include/firefox/gfxFontconfigFonts.h +-rw-r--r-- root/root usr/include/firefox/gfxGdkNativeRenderer.h +-rw-r--r-- root/root usr/include/firefox/gfxGradientCache.h +-rw-r--r-- root/root usr/include/firefox/gfxImageSurface.h +-rw-r--r-- root/root usr/include/firefox/gfxLineSegment.h +-rw-r--r-- root/root usr/include/firefox/gfxMathTable.h +-rw-r--r-- root/root usr/include/firefox/gfxMatrix.h +-rw-r--r-- root/root usr/include/firefox/gfxPattern.h +-rw-r--r-- root/root usr/include/firefox/gfxPlatform.h +-rw-r--r-- root/root usr/include/firefox/gfxPlatformGtk.h +-rw-r--r-- root/root usr/include/firefox/gfxPoint.h +-rw-r--r-- root/root usr/include/firefox/gfxPrefs.h +-rw-r--r-- root/root usr/include/firefox/gfxQuad.h +-rw-r--r-- root/root usr/include/firefox/gfxQuaternion.h +-rw-r--r-- root/root usr/include/firefox/gfxRect.h +-rw-r--r-- root/root usr/include/firefox/gfxSVGGlyphs.h +-rw-r--r-- root/root usr/include/firefox/gfxSharedImageSurface.h +-rw-r--r-- root/root usr/include/firefox/gfxSkipChars.h +-rw-r--r-- root/root usr/include/firefox/gfxTelemetry.h +-rw-r--r-- root/root usr/include/firefox/gfxTextRun.h +-rw-r--r-- root/root usr/include/firefox/gfxTypes.h +-rw-r--r-- root/root usr/include/firefox/gfxUserFontSet.h +-rw-r--r-- root/root usr/include/firefox/gfxUtils.h +-rw-r--r-- root/root usr/include/firefox/gfxVR.h +-rw-r--r-- root/root usr/include/firefox/gfxXlibNativeRenderer.h +-rw-r--r-- root/root usr/include/firefox/gfxXlibSurface.h +drwxr-xr-x root/root usr/include/firefox/gfxipc/ +-rw-r--r-- root/root usr/include/firefox/gfxipc/ShadowLayerUtils.h +-rw-r--r-- root/root usr/include/firefox/gmp-async-shutdown.h +-rw-r--r-- root/root usr/include/firefox/gmp-audio-codec.h +-rw-r--r-- root/root usr/include/firefox/gmp-audio-decode.h +-rw-r--r-- root/root usr/include/firefox/gmp-audio-host.h +-rw-r--r-- root/root usr/include/firefox/gmp-audio-samples.h +-rw-r--r-- root/root usr/include/firefox/gmp-decryption.h +-rw-r--r-- root/root usr/include/firefox/gmp-entrypoints.h +-rw-r--r-- root/root usr/include/firefox/gmp-errors.h +-rw-r--r-- root/root usr/include/firefox/gmp-platform.h +-rw-r--r-- root/root usr/include/firefox/gmp-storage.h +-rw-r--r-- root/root usr/include/firefox/gmp-video-codec.h +-rw-r--r-- root/root usr/include/firefox/gmp-video-decode.h +-rw-r--r-- root/root usr/include/firefox/gmp-video-encode.h +-rw-r--r-- root/root usr/include/firefox/gmp-video-frame-encoded.h +-rw-r--r-- root/root usr/include/firefox/gmp-video-frame-i420.h +-rw-r--r-- root/root usr/include/firefox/gmp-video-frame.h +-rw-r--r-- root/root usr/include/firefox/gmp-video-host.h +-rw-r--r-- root/root usr/include/firefox/gmp-video-plane.h +drwxr-xr-x root/root usr/include/firefox/google/ +drwxr-xr-x root/root usr/include/firefox/google/protobuf/ +-rw-r--r-- root/root usr/include/firefox/google/protobuf/descriptor.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/descriptor.pb.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/descriptor_database.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/dynamic_message.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/extension_set.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/generated_enum_reflection.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/generated_message_reflection.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/generated_message_util.h +drwxr-xr-x root/root usr/include/firefox/google/protobuf/io/ +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/coded_stream.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/coded_stream_inl.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/gzip_stream.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/package_info.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/printer.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/strtod.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/tokenizer.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/zero_copy_stream.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/zero_copy_stream_impl.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/io/zero_copy_stream_impl_lite.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/message.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/message_lite.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/package_info.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/reflection_ops.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/repeated_field.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/service.h +drwxr-xr-x root/root usr/include/firefox/google/protobuf/stubs/ +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_arm64_gcc.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_arm_gcc.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_arm_qnx.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_atomicword_compat.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_generic_gcc.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_macosx.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_mips_gcc.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_pnacl.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_solaris.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_tsan.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_x86_gcc.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/atomicops_internals_x86_msvc.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/common.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/hash.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/map_util.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/once.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/platform_macros.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/shared_ptr.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/stl_util.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/stringprintf.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/strutil.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/substitute.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/template_util.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/stubs/type_traits.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/text_format.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/unknown_field_set.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/wire_format.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/wire_format_lite.h +-rw-r--r-- root/root usr/include/firefox/google/protobuf/wire_format_lite_inl.h +drwxr-xr-x root/root usr/include/firefox/graphite2/ +-rw-r--r-- root/root usr/include/firefox/graphite2/Font.h +-rw-r--r-- root/root usr/include/firefox/graphite2/Log.h +-rw-r--r-- root/root usr/include/firefox/graphite2/Segment.h +-rw-r--r-- root/root usr/include/firefox/graphite2/Types.h +drwxr-xr-x root/root usr/include/firefox/gtest/ +-rw-r--r-- root/root usr/include/firefox/gtest/MozGtestFriend.h +-rw-r--r-- root/root usr/include/firefox/gtk2xtbin.h +drwxr-xr-x root/root usr/include/firefox/harfbuzz/ +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-blob.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-buffer.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-common.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-deprecated.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-face.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-font.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-glib.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-ot-font.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-ot-layout.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-ot-math.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-ot-shape.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-ot-tag.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-ot.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-set.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-shape-plan.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-shape.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-unicode.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb-version.h +-rw-r--r-- root/root usr/include/firefox/harfbuzz/hb.h +-rw-r--r-- root/root usr/include/firefox/huffman.h +-rw-r--r-- root/root usr/include/firefox/imgICache.h +-rw-r--r-- root/root usr/include/firefox/imgIContainer.h +-rw-r--r-- root/root usr/include/firefox/imgIContainerDebug.h +-rw-r--r-- root/root usr/include/firefox/imgIEncoder.h +-rw-r--r-- root/root usr/include/firefox/imgILoader.h +-rw-r--r-- root/root usr/include/firefox/imgINotificationObserver.h +-rw-r--r-- root/root usr/include/firefox/imgIOnloadBlocker.h +-rw-r--r-- root/root usr/include/firefox/imgIRequest.h +-rw-r--r-- root/root usr/include/firefox/imgIScriptedNotificationObserver.h +-rw-r--r-- root/root usr/include/firefox/imgITools.h +-rw-r--r-- root/root usr/include/firefox/imgLoader.h +-rw-r--r-- root/root usr/include/firefox/imgRequest.h +-rw-r--r-- root/root usr/include/firefox/imgRequestProxy.h +-rw-r--r-- root/root usr/include/firefox/inICSSValueSearch.h +-rw-r--r-- root/root usr/include/firefox/inIDOMUtils.h +-rw-r--r-- root/root usr/include/firefox/inIDOMView.h +-rw-r--r-- root/root usr/include/firefox/inIDeepTreeWalker.h +-rw-r--r-- root/root usr/include/firefox/inISearchObserver.h +-rw-r--r-- root/root usr/include/firefox/inISearchProcess.h +drwxr-xr-x root/root usr/include/firefox/ipc/ +-rw-r--r-- root/root usr/include/firefox/ipc/DataStorageIPCUtils.h +-rw-r--r-- root/root usr/include/firefox/ipc/ErrorIPCUtils.h +-rw-r--r-- root/root usr/include/firefox/ipc/IPCMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/ipc/nsGUIEventIPC.h +-rw-r--r-- root/root usr/include/firefox/jArray.h +-rw-r--r-- root/root usr/include/firefox/jemalloc_types.h +-rw-r--r-- root/root usr/include/firefox/js-config.h +-rw-r--r-- root/root usr/include/firefox/js.msg +drwxr-xr-x root/root usr/include/firefox/js/ +-rw-r--r-- root/root usr/include/firefox/js/CallArgs.h +-rw-r--r-- root/root usr/include/firefox/js/CallNonGenericMethod.h +-rw-r--r-- root/root usr/include/firefox/js/CharacterEncoding.h +-rw-r--r-- root/root usr/include/firefox/js/Class.h +-rw-r--r-- root/root usr/include/firefox/js/Conversions.h +-rw-r--r-- root/root usr/include/firefox/js/Date.h +-rw-r--r-- root/root usr/include/firefox/js/Debug.h +-rw-r--r-- root/root usr/include/firefox/js/GCAPI.h +-rw-r--r-- root/root usr/include/firefox/js/GCAnnotations.h +-rw-r--r-- root/root usr/include/firefox/js/GCHashTable.h +-rw-r--r-- root/root usr/include/firefox/js/GCPolicyAPI.h +-rw-r--r-- root/root usr/include/firefox/js/GCVariant.h +-rw-r--r-- root/root usr/include/firefox/js/GCVector.h +-rw-r--r-- root/root usr/include/firefox/js/HashTable.h +-rw-r--r-- root/root usr/include/firefox/js/HeapAPI.h +-rw-r--r-- root/root usr/include/firefox/js/Id.h +-rw-r--r-- root/root usr/include/firefox/js/Initialization.h +-rw-r--r-- root/root usr/include/firefox/js/LegacyIntTypes.h +-rw-r--r-- root/root usr/include/firefox/js/MemoryMetrics.h +-rw-r--r-- root/root usr/include/firefox/js/Principals.h +-rw-r--r-- root/root usr/include/firefox/js/ProfilingFrameIterator.h +-rw-r--r-- root/root usr/include/firefox/js/ProfilingStack.h +-rw-r--r-- root/root usr/include/firefox/js/Proxy.h +-rw-r--r-- root/root usr/include/firefox/js/Realm.h +-rw-r--r-- root/root usr/include/firefox/js/RequiredDefines.h +-rw-r--r-- root/root usr/include/firefox/js/RootingAPI.h +-rw-r--r-- root/root usr/include/firefox/js/SliceBudget.h +-rw-r--r-- root/root usr/include/firefox/js/StructuredClone.h +-rw-r--r-- root/root usr/include/firefox/js/SweepingAPI.h +-rw-r--r-- root/root usr/include/firefox/js/TraceKind.h +-rw-r--r-- root/root usr/include/firefox/js/TracingAPI.h +-rw-r--r-- root/root usr/include/firefox/js/TrackedOptimizationInfo.h +-rw-r--r-- root/root usr/include/firefox/js/TypeDecls.h +-rw-r--r-- root/root usr/include/firefox/js/UbiNode.h +-rw-r--r-- root/root usr/include/firefox/js/UbiNodeBreadthFirst.h +-rw-r--r-- root/root usr/include/firefox/js/UbiNodeCensus.h +-rw-r--r-- root/root usr/include/firefox/js/UbiNodeDominatorTree.h +-rw-r--r-- root/root usr/include/firefox/js/UbiNodePostOrder.h +-rw-r--r-- root/root usr/include/firefox/js/UbiNodeShortestPaths.h +-rw-r--r-- root/root usr/include/firefox/js/UniquePtr.h +-rw-r--r-- root/root usr/include/firefox/js/Utility.h +-rw-r--r-- root/root usr/include/firefox/js/Value.h +-rw-r--r-- root/root usr/include/firefox/js/Vector.h +-rw-r--r-- root/root usr/include/firefox/js/WeakMapPtr.h +-rw-r--r-- root/root usr/include/firefox/jsalloc.h +-rw-r--r-- root/root usr/include/firefox/jsapi.h +-rw-r--r-- root/root usr/include/firefox/jsbytecode.h +-rw-r--r-- root/root usr/include/firefox/jsclist.h +-rw-r--r-- root/root usr/include/firefox/jscpucfg.h +-rw-r--r-- root/root usr/include/firefox/jsfriendapi.h +-rw-r--r-- root/root usr/include/firefox/jsperf.h +-rw-r--r-- root/root usr/include/firefox/jsprf.h +-rw-r--r-- root/root usr/include/firefox/jsprototypes.h +-rw-r--r-- root/root usr/include/firefox/jspubtd.h +-rw-r--r-- root/root usr/include/firefox/jstypes.h +-rw-r--r-- root/root usr/include/firefox/jsversion.h +-rw-r--r-- root/root usr/include/firefox/jswrapper.h +drwxr-xr-x root/root usr/include/firefox/kiss_fft/ +-rw-r--r-- root/root usr/include/firefox/kiss_fft/kiss_fftr.h +drwxr-xr-x root/root usr/include/firefox/libmkv/ +-rw-r--r-- root/root usr/include/firefox/libmkv/EbmlBufferWriter.h +-rw-r--r-- root/root usr/include/firefox/libmkv/EbmlIDs.h +-rw-r--r-- root/root usr/include/firefox/libmkv/EbmlWriter.h +-rw-r--r-- root/root usr/include/firefox/libmkv/WebMElement.h +-rw-r--r-- root/root usr/include/firefox/mozAutoDocUpdate.h +-rw-r--r-- root/root usr/include/firefox/mozFlushType.h +-rw-r--r-- root/root usr/include/firefox/mozIApplication.h +-rw-r--r-- root/root usr/include/firefox/mozIApplicationClearPrivateDataParams.h +-rw-r--r-- root/root usr/include/firefox/mozIAsyncFavicons.h +-rw-r--r-- root/root usr/include/firefox/mozIAsyncHistory.h +-rw-r--r-- root/root usr/include/firefox/mozIAsyncLivemarks.h +-rw-r--r-- root/root usr/include/firefox/mozIColorAnalyzer.h +-rw-r--r-- root/root usr/include/firefox/mozIDOMWindow.h +-rw-r--r-- root/root usr/include/firefox/mozIDownloadPlatform.h +-rw-r--r-- root/root usr/include/firefox/mozIGeckoMediaPluginChromeService.h +-rw-r--r-- root/root usr/include/firefox/mozIGeckoMediaPluginService.h +-rw-r--r-- root/root usr/include/firefox/mozIJSSubScriptLoader.h +-rw-r--r-- root/root usr/include/firefox/mozIMozIntl.h +-rw-r--r-- root/root usr/include/firefox/mozIPersonalDictionary.h +-rw-r--r-- root/root usr/include/firefox/mozIPlacesAutoComplete.h +-rw-r--r-- root/root usr/include/firefox/mozIPlacesPendingOperation.h +-rw-r--r-- root/root usr/include/firefox/mozISpellCheckingEngine.h +-rw-r--r-- root/root usr/include/firefox/mozISpellI18NManager.h +-rw-r--r-- root/root usr/include/firefox/mozISpellI18NUtil.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageAggregateFunction.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageAsyncConnection.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageAsyncStatement.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageBaseStatement.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageBindingParams.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageBindingParamsArray.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageCompletionCallback.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageConnection.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageError.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageFunction.h +-rw-r--r-- root/root usr/include/firefox/mozIStoragePendingStatement.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageProgressHandler.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageResultSet.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageRow.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageService.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageStatement.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageStatementCallback.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageStatementParams.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageStatementRow.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageVacuumParticipant.h +-rw-r--r-- root/root usr/include/firefox/mozIStorageValueArray.h +-rw-r--r-- root/root usr/include/firefox/mozITXTToHTMLConv.h +-rw-r--r-- root/root usr/include/firefox/mozIThirdPartyUtil.h +-rw-r--r-- root/root usr/include/firefox/mozStorageCID.h +-rw-r--r-- root/root usr/include/firefox/mozStorageHelper.h +-rw-r--r-- root/root usr/include/firefox/mozcontainer.h +-rw-r--r-- root/root usr/include/firefox/mozilla-config.h +drwxr-xr-x root/root usr/include/firefox/mozilla/ +-rw-r--r-- root/root usr/include/firefox/mozilla/AbstractThread.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AbstractTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AddonContentPolicy.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AddonManagerWebAPI.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AddonPathService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AlertNotification.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AlertNotificationIPCSerializer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Alignment.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AllocPolicy.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AlreadyAddRefed.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AnimValuesStyleRule.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AnimationCollection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AnimationComparator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AnimationPerformanceWarning.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AnimationTarget.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AnimationUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AppData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AppProcessChecker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AppUnits.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ArenaObjectID.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ArenaRefPtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ArenaRefPtrInlines.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Array.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ArrayUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ArrayView.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Assertions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AsyncEventDispatcher.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Atomics.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Attributes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AutoGlobalTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AutoRestore.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AutoTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/AvailableMemoryTracker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/BackgroundHangMonitor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Base64.h +-rw-r--r-- root/root usr/include/firefox/mozilla/BasePrincipal.h +-rw-r--r-- root/root usr/include/firefox/mozilla/BasicEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/BinarySearch.h +-rw-r--r-- root/root usr/include/firefox/mozilla/BlockingResourceBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/BloomFilter.h +-rw-r--r-- root/root usr/include/firefox/mozilla/BrowserElementParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/BufferList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CDMCaps.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CDMProxy.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CORSMode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CSSAlignUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CSSEditUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CSSEnabledState.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CSSStyleSheet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CSSVariableDeclarations.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CSSVariableResolver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CSSVariableValues.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Casting.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ChangeStyleTransaction.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ChaosMode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Char16.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CheckedInt.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ClearOnShutdown.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CommandList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Compiler.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CompositeTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Compression.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ComputedTiming.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ComputedTimingFunction.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CondVar.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ConsoleReportCollector.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ConsoleTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ContentCache.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ContentEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CountingAllocatorBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/CycleCollectedJSContext.h +-rw-r--r-- root/root usr/include/firefox/mozilla/D3DMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DOMEventTargetHelper.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DataStorage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DeadlockDetector.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Debug.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DebugOnly.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DebuggerOnGCRunnable.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Decimal.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DeclarationBlock.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DeclarationBlockInlines.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DecryptorProxyCallback.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DeferredFinalize.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DetailedPromise.h +-rw-r--r-- root/root usr/include/firefox/mozilla/DocLoadingTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EMEUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EditTransactionBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EditorBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EditorController.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EditorUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EffectCompositor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EffectSet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EndianUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EnumSet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EnumTypeTraits.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EnumeratedArray.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EnumeratedArrayCycleCollection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EnumeratedRange.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ErrorNames.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ErrorResult.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventClassList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventDispatcher.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventForwards.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventListenerManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventMessageList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventNameList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventStateManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventStates.h +-rw-r--r-- root/root usr/include/firefox/mozilla/EventTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/FFTBlock.h +-rw-r--r-- root/root usr/include/firefox/mozilla/FastBernoulliTrial.h +-rw-r--r-- root/root usr/include/firefox/mozilla/FeedWriterEnabled.h +-rw-r--r-- root/root usr/include/firefox/mozilla/FileLocation.h +-rw-r--r-- root/root usr/include/firefox/mozilla/FileUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/FinalizationWitnessService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/FloatingPoint.h +-rw-r--r-- root/root usr/include/firefox/mozilla/FontRange.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Function.h +-rw-r--r-- root/root usr/include/firefox/mozilla/GenericFactory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/GenericRefCounted.h +-rw-r--r-- root/root usr/include/firefox/mozilla/GeometryUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/GfxMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/GuardObjects.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HTMLEditor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Hal.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HalImpl.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HalScreenConfiguration.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HalSensor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HalTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HalWakeLock.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HandleRefPtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HangAnnotations.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HangMonitor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HashFunctions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/HoldDropJSObjects.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IHistory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IMEStateManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IOInterposer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IncrementalClearCOMRuleArray.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IncrementalTokenizer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IndexSequence.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IntegerPrintfMacros.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IntegerRange.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IntegerTypeTraits.h +-rw-r--r-- root/root usr/include/firefox/mozilla/IntentionalCrash.h +-rw-r--r-- root/root usr/include/firefox/mozilla/InternalMutationEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/JSEventHandler.h +-rw-r--r-- root/root usr/include/firefox/mozilla/JSONWriter.h +-rw-r--r-- root/root usr/include/firefox/mozilla/JSObjectHolder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/JavascriptTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/KeyNameList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/KeyframeEffectParams.h +-rw-r--r-- root/root usr/include/firefox/mozilla/KeyframeUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LateWriteChecks.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LayerAnimationInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LayerTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LazyIdleThread.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Likely.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LinkedList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LinuxSignal.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LinuxUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LoadContext.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LoadContextInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LoadInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LoadTainting.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Logging.h +-rw-r--r-- root/root usr/include/firefox/mozilla/LookAndFeel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MacroArgs.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MacroForEach.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MainThreadIdlePeriod.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MarkersStorage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MathAlgorithms.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Maybe.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MaybeOneOf.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MediaManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MediaStreamAudioDestinationNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MemoryChecking.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MemoryReporting.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MessagePortTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MiscEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Module.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ModuleLoader.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ModuleUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Monitor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MouseEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Move.h +-rw-r--r-- root/root usr/include/firefox/mozilla/MozPromise.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Mutex.h +-rw-r--r-- root/root usr/include/firefox/mozilla/NativeOSFileInternals.h +-rw-r--r-- root/root usr/include/firefox/mozilla/NotNull.h +-rw-r--r-- root/root usr/include/firefox/mozilla/NullPtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/OSFileConstants.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ObservedDocShell.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Observer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Omnijar.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Opaque.h +-rw-r--r-- root/root usr/include/firefox/mozilla/OperatorNewExtensions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/OverflowChangedTracker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/OwningNonNull.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PaintTracker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Pair.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PeerIdentity.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PendingAnimationTracker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PhysicalKeyCodeNameList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PluginLibrary.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PluginPRLibrary.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PodOperations.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Poison.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PoisonIOInterposer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PreallocatedProcessManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Preferences.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ProcessHangMonitor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ProcessHangMonitorIPC.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ProcessPriorityManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ProcessedStack.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PseudoElementHashEntry.h +-rw-r--r-- root/root usr/include/firefox/mozilla/PublicSSL.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Range.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RangedArray.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RangedPtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ReentrancyGuard.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ReentrantMonitor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RefCountType.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RefCounted.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RefPtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ReflowInput.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ReflowOutput.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RemoteSpellCheckEngineChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RemoteSpellCheckEngineParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RestyleLogging.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RestyleManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RestyleManagerBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RestyleManagerHandle.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RestyleManagerHandleInlines.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RestyleTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ReverseIterator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RollingMean.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RootedOwningNonNull.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RootedRefPtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RuleNodeCacheConditions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/RuleProcessorCache.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SHA1.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SSE.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SVGContextPaint.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Saturate.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ScopeExit.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Scoped.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SegmentedVector.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SelectionState.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServiceList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Services.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoBindingList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoBindingTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoBindings.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoDeclarationBlock.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoElementSnapshot.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoRestyleManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoStyleSet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoStyleSheet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ServoUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SharedThreadPool.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SheetType.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ShmemPool.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SizePrintfMacros.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SnappyCompressOutputStream.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SnappyFrameUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SnappyUncompressInputStream.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SplayTree.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Sprintf.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StackWalk.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StartupTimeline.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StateMirroring.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StateWatching.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StaticAnalysisFunctions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StaticMutex.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StaticPresData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StaticPtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StickyTimeDuration.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleAnimationValue.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleBackendType.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleComplexColor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleContextSource.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleSetHandle.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleSetHandleInlines.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleSheet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleSheetInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleSheetInlines.h +-rw-r--r-- root/root usr/include/firefox/mozilla/StyleStructContext.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SyncRunnable.h +-rw-r--r-- root/root usr/include/firefox/mozilla/SystemMemoryReporter.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TaggedAnonymousMemory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TaskDispatcher.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TaskQueue.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Telemetry.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TelemetryComms.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TelemetryEventEnums.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TelemetryHistogramEnums.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TelemetryScalarEnums.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TemplateLib.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TextComposition.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TextEditRules.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TextEditor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TextEventDispatcher.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TextEventDispatcherListener.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TextEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TextInputProcessor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TextRange.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ThreadHangStats.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ThreadLocal.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ThrottledEventQueue.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TimeStamp.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TimelineConsumers.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TimelineMarkerEnums.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TimestampTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TimingParams.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ToString.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Tokenizer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TouchEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Tuple.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TypeTraits.h +-rw-r--r-- root/root usr/include/firefox/mozilla/TypedEnumBits.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Types.h +-rw-r--r-- root/root usr/include/firefox/mozilla/UniquePtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/UniquePtrExtensions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Unused.h +-rw-r--r-- root/root usr/include/firefox/mozilla/UseCounter.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Variant.h +-rw-r--r-- root/root usr/include/firefox/mozilla/Vector.h +-rw-r--r-- root/root usr/include/firefox/mozilla/VirtualKeyCodeList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/VolatileBuffer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/VsyncDispatcher.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WeakPtr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WebBrowserPersistDocumentChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WebBrowserPersistDocumentParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WebBrowserPersistLocalDocument.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WidgetTraceEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WidgetUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WidgetUtilsGtk.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WindowsDllBlocklist.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WorkerTimelineMarker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/WritingModes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/X11Util.h +-rw-r--r-- root/root usr/include/firefox/mozilla/XPCOM.h +-rw-r--r-- root/root usr/include/firefox/mozilla/XPTInterfaceInfoManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/XorShift128PlusRNG.h +drwxr-xr-x root/root usr/include/firefox/mozilla/a11y/ +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/AccTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/Accessible.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/AccessibleWrap.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/DocAccessible.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/DocAccessibleChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/DocAccessibleChildBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/DocAccessibleParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/DocManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/FocusManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/HyperTextAccessible.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/HyperTextAccessibleWrap.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/IPCTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/Platform.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/ProxyAccessible.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/ProxyAccessibleBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/ProxyAccessibleShared.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/RelationType.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/Role.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/SelectionManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/a11y/States.h +-rw-r--r-- root/root usr/include/firefox/mozilla/arm.h +drwxr-xr-x root/root usr/include/firefox/mozilla/browser/ +-rw-r--r-- root/root usr/include/firefox/mozilla/browser/AboutRedirector.h +-rw-r--r-- root/root usr/include/firefox/mozilla/browser/DirectoryProvider.h +drwxr-xr-x root/root usr/include/firefox/mozilla/chrome/ +-rw-r--r-- root/root usr/include/firefox/mozilla/chrome/RegistryMessageUtils.h +drwxr-xr-x root/root usr/include/firefox/mozilla/css/ +-rw-r--r-- root/root usr/include/firefox/mozilla/css/Declaration.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/ErrorReporter.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/GroupRule.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/ImageLoader.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/ImportRule.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/Loader.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/NameSpaceRule.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/Rule.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/SheetParsingMode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/css/StyleRule.h +drwxr-xr-x root/root usr/include/firefox/mozilla/devtools/ +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/AutoMemMap.h +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/CoreDump.pb.h +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/DeserializedNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/DominatorTree.h +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/FileDescriptorOutputStream.h +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/HeapSnapshot.h +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/HeapSnapshotTempFileHelperChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/HeapSnapshotTempFileHelperParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/devtools/ZeroCopyNSIOutputStream.h +drwxr-xr-x root/root usr/include/firefox/mozilla/docshell/ +-rw-r--r-- root/root usr/include/firefox/mozilla/docshell/OfflineCacheUpdateChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/docshell/OfflineCacheUpdateParent.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/APZTestDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AbstractWorkerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AccessibleNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AccessibleNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AddonEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AddonEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AddonManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnalyserNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnalyserNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimatableBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Animation.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectReadOnly.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectReadOnlyBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectTiming.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectTimingBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectTimingReadOnly.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEffectTimingReadOnlyBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationPlaybackEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationPlaybackEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationTimeline.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnimationTimelineBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnonymousContent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AnonymousContentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AppInfoBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AppNotificationServiceOptionsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ArchiveReaderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ArchiveRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AtomList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Attr.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AttrBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioBuffer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioBufferBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioBufferSourceNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioBufferSourceNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioChannelBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioContext.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioContextBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioDestinationNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioDestinationNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioListener.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioListenerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioParam.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioParamBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioProcessingEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioProcessingEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioStreamTrack.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioStreamTrackBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioTrack.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioTrackBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioTrackList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AudioTrackListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AutocompleteErrorEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AutocompleteErrorEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/AutocompleteInfoBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BarPropBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BarProps.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BaseKeyframeTypesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BatteryManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BeforeAfterKeyboardEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BeforeAfterKeyboardEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BeforeUnloadEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BeforeUnloadEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BindingDeclarations.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BindingUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BiquadFilterNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BiquadFilterNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BlobBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BlobEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BlobEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BlobSet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BodyUtil.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BorrowedAttrInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BoxObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BoxObjectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BroadcastChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BroadcastChannelBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BrowserElementAudioChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BrowserElementAudioChannelBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BrowserElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BrowserElementDictionariesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BrowserElementProxyBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/BrowserFeedWriterBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CDATASection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CDATASectionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CPOWManagerGetter.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSPDictionariesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSPReportBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSS.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSS2PropertiesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSAnimationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSLexer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSLexerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSPrimitiveValueBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSPseudoElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSPseudoElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSRuleList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSRuleListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSStyleDeclarationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSStyleSheetBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSTransitionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSValue.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSValueBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CSSValueListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CacheBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CacheStorageBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CallbackFunction.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CallbackInterface.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CallbackObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasCaptureMediaStream.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasCaptureMediaStreamBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasGradient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasPath.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasPattern.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasRenderingContext2D.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasRenderingContext2DBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasRenderingContextHelper.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CanvasUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CaretPositionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CaretStateChangedEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CaretStateChangedEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChannelInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChannelMergerNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChannelMergerNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChannelSplitterNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChannelSplitterNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CharacterDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CheckerboardReportService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CheckerboardReportServiceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChildIterator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChildNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChromeNodeList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChromeNodeListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChromeUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ChromeUtilsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ClientBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ClientsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ClipboardEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ClipboardEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CloseEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CloseEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CommandEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CommandEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Comment.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CommentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CompositionEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CompositionEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Console.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ConsoleBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ConstantSourceNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ConstantSourceNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContainerBoxObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContainerBoxObjectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContentBridgeChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContentBridgeParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContentChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContentParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContentProcess.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContentProcessManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ContentVerifier.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ConvolverNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ConvolverNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CoordinatesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CrashReporterChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CrashReporterParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CreateOfferRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CryptoBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CryptoBuffer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CryptoKey.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CustomElementRegistry.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CustomElementRegistryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CustomEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/CustomEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DCPresentationChannelDescription.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMCursor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMCursorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMError.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMErrorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMException.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMExceptionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMImplementation.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMImplementationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMIntersectionObserver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMJSClass.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMJSProxyHandler.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMMatrix.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMMatrixBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMParser.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMParserBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMPoint.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMPointBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMQuad.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMQuadBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMRect.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMRectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMRectListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMStorage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMStorageIPC.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMString.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMStringList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMStringListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMStringMapBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMTokenListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DOMTokenListSupportedTokens.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataChannelBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataContainerEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataContainerEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataTransfer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataTransferBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataTransferItem.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataTransferItemBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataTransferItemList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DataTransferItemListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Date.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DecoderDoctorNotificationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DedicatedWorkerGlobalScopeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DelayNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DelayNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DesktopNotification.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DesktopNotificationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceLightEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceLightEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceMotionEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceMotionEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceOrientationEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceOrientationEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceProximityEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DeviceProximityEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DirectionalityUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Directory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DirectoryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocGroup.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentFragment.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentFragmentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentTimeline.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentTimelineBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentType.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DocumentTypeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DominatorTreeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DownloadEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DownloadEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DownloadsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DragEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DragEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DynamicsCompressorNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/DynamicsCompressorNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Element.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ElementInlines.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/EncodingUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ErrorEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ErrorEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Errors.msg +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Event.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/EventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/EventHandlerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/EventListenerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/EventSource.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/EventSourceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/EventTarget.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/EventTargetBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Exceptions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ExtendableEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ExtendableMessageEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ExternalBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ExternalHelperAppChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ExternalHelperAppParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FakePluginTagInitBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FakeSpeechRecognitionService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FakeString.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FallbackEncoding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Fetch.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchDriver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchIPCTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FetchUtil.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/File.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileHandleBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileHandleCommon.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileHandleStorage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileModeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FilePickerParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileReader.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileReaderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileReaderSync.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileReaderSyncBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileRequestBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystem.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemDirectoryEntry.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemDirectoryEntryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemDirectoryReader.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemDirectoryReaderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemEntry.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemEntryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemFileEntry.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemFileEntryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemRequestParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemSecurity.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemTaskBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FileSystemUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebDiscoveryManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebDiscoveryManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebFetchEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebPublishBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebPublishOptionsIPCSerializer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebPublishedServer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebPublishedServerIPC.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebServerEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FlyWebWebSocketEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FocusEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FocusEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFace.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSetBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSetIterator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSetLoadEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSetLoadEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FontFaceSourceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FormData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FormDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FragmentOrElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FromParser.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/FunctionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GainNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GainNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Gamepad.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadAxisMoveEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadAxisMoveEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadButton.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadButtonEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadButtonEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadEventChannelChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadEventChannelParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadMonitoring.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadPlatformService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadPose.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadPoseBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadPoseState.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadServiceTest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadServiceTestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadServiceType.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadTestChannelChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GamepadTestChannelParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GeneratedAtomList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GeneratedEventList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GeolocationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GeometryUtilsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GetFilesHelper.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GetUserMediaRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GetUserMediaRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Grid.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GridArea.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GridBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GridDimension.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GridLine.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GridLines.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GridTrack.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GridTracks.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/GroupedSHistory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAllCollection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAllCollectionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAnchorElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAnchorElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAppletElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAreaElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAreaElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAudioElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLAudioElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLBRElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLBRElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLBaseElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLBodyElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLBodyElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLButtonElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLButtonElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLCanvasElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLCanvasElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLCollectionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLContentElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLContentElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDListElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDataElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDataElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDataListElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDataListElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDetailsElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDetailsElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDirectoryElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDivElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDivElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLDocumentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLEmbedElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFieldSetElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFieldSetElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFontElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFontElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFormControlsCollection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFormControlsCollectionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFormElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFormElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFormSubmission.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFrameElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFrameElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFrameSetElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLFrameSetElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLHRElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLHRElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLHeadElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLHeadingElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLHeadingElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLHtmlElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLHyperlinkElementUtilsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLIFrameElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLIFrameElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLImageElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLImageElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLInputElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLInputElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLLIElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLLIElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLLabelElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLLabelElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLLegendElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLLegendElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLLinkElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLLinkElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMapElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMapElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMediaElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMediaElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMenuElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMenuElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMenuItemElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMenuItemElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMetaElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMetaElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMeterElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLMeterElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLModElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLModElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOListElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLObjectElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLObjectElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOptGroupElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOptGroupElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOptionElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOptionElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOptionsCollection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOptionsCollectionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOutputElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLOutputElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLParagraphElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLParagraphElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLParamElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLPictureElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLPictureElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLPreElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLPreElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLProgressElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLProgressElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLQuoteElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLScriptElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLScriptElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSelectElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSelectElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLShadowElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLShadowElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSharedElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSharedListElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSharedObjectElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSourceElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSourceElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSpanElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSpanElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLStyleElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLStyleElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLSummaryElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableCaptionElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableCaptionElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableCellElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableCellElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableColElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableColElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableRowElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableRowElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableSectionElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTableSectionElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTemplateElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTemplateElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTextAreaElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTextAreaElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTimeElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTimeElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTitleElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTitleElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTrackElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLTrackElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLUListElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLUnknownElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLVideoElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HTMLVideoElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HashChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HashChangeEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Headers.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HeadersBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HeapSnapshotBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HiddenPluginEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HiddenPluginEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HistoryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/HttpServer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBCursor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBCursorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBDatabase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBDatabaseBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBFactory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBFactoryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBFileHandle.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBFileHandleBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBFileRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBFileRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBIndex.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBIndexBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBKeyRange.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBKeyRangeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBMutableFile.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBMutableFileBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBObjectStore.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBObjectStoreBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBOpenDBRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBTransaction.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBTransactionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBVersionChangeEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IDBWrapperCache.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IIRFilterNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IIRFilterNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IdleDeadline.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IdleDeadlineBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IdleRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageBitmap.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageBitmapBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageBitmapRenderingContext.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageBitmapRenderingContextBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageBitmapSource.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageCapture.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageCaptureBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageCaptureError.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageCaptureErrorEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageCaptureErrorEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageDocument.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageDocumentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageEncoder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImageTracker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ImportManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IndexedDatabase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IndexedDatabaseManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InputMethodBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InspectorUtilsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InstallTriggerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InternalHeaders.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InternalRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/InternalResponse.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IntersectionObserverBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IterableIterator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/IterableIteratorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/JSSlots.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyAlgorithmBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyAlgorithmProxy.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyIdsInitDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyboardEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyboardEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyframeAnimationOptionsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyframeEffect.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyframeEffectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/KeyframeEffectReadOnly.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/LegacyQueryInterfaceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Link.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/LinkStyleBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ListBoxObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ListBoxObjectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/LocalMediaStreamBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Location.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/LocationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaDeviceInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaDeviceInfoBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaDevices.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaDevicesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaElementAudioSourceNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaElementAudioSourceNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaEncryptedEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaEncryptedEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaError.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaErrorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaIPCUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeyError.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeyErrorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeyMessageEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeyMessageEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeySession.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeySessionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeyStatusMap.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeyStatusMapBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeySystemAccess.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeySystemAccessBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeySystemAccessManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeys.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeysBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaKeysRequestStatusBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaQueryList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaQueryListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaRecorderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaSource.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaSourceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamAudioDestinationNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamAudioDestinationNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamAudioSourceNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamAudioSourceNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamError.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamErrorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamTrack.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamTrackBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamTrackEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaStreamTrackEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaTrackConstraintSetBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaTrackSettingsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MediaTrackSupportedConstraintsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MenuBoxObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MenuBoxObjectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MessageChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MessageChannelBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MessageEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MessageEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MessagePort.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MessagePortBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MessagePortChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MessagePortParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MimeTypeArrayBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MimeTypeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MouseEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MouseEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MouseScrollEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MouseScrollEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozMap.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozPowerManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozSelfSupportBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozSettingsEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozSettingsEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozSettingsTransactionEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozSettingsTransactionEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozTetheringManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozTimeManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MozWakeLockBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MultipartBlobImpl.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MutableBlobStorage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MutableBlobStreamListener.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MutableFileBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MutationEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MutationEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/MutationObserverBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NSSU2FTokenRemote.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NameSpaceConstants.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NamedNodeMapBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NativeOSFileInternalsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Navigator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NavigatorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NetDashboardBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NetworkInformationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NetworkOptionsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NodeFilterBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NodeInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NodeInfoInlines.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NodeIterator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NodeIteratorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NodeListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NonRefcountedDOMObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Notification.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NotificationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NotificationEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NotificationEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NotifyPaintEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/NotifyPaintEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Nullable.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OSFileSystem.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OfflineAudioCompletionEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OfflineAudioCompletionEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OfflineAudioContextBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OfflineResourceListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OffscreenCanvas.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OffscreenCanvasBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OscillatorNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/OscillatorNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PageTransitionEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PageTransitionEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PaintRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PaintRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PaintRequestListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PannerNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PannerNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ParentNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PartialSHistory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PeerConnectionImplBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PeerConnectionImplEnumsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PeerConnectionObserverBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PeerConnectionObserverEnumsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Performance.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceEntry.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceEntryBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceEntryEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceEntryEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceMark.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceMarkBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceMeasure.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceMeasureBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceNavigation.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceNavigationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceObserver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceObserverBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceObserverEntryList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceObserverEntryListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceResourceTiming.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceResourceTimingBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceTiming.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PerformanceTimingBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PeriodicWave.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PeriodicWaveBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PermissionMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PermissionSettingsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PermissionStatus.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PermissionStatusBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Permissions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PermissionsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PluginArrayBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PluginBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PluginCrashedEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PluginCrashedEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PointerEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PointerEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PopStateEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PopStateEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PopupBlockedEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PopupBlockedEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PopupBoxObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PopupBoxObjectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Pose.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PositionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PositionErrorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PowerManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Presentation.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationAvailability.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationAvailabilityBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationBuilderChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationBuilderParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationCallbacks.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationConnection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationConnectionAvailableEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationConnectionAvailableEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationConnectionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationConnectionCloseEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationConnectionCloseEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationConnectionList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationConnectionListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationDeviceInfoManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationDeviceManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationIPCService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationReceiver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationReceiverBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationServiceBase.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationSessionInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PresentationTCPSessionTransport.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PrimitiveConversions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ProcessGlobal.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ProcessingInstruction.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ProcessingInstructionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ProfileTimelineMarkerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ProgressEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ProgressEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Promise.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PromiseBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PromiseDebugging.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PromiseDebuggingBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PromiseNativeHandler.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PromiseWorkerProxy.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PrototypeList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushMessageDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushNotifier.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushSubscription.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushSubscriptionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushSubscriptionOptions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushSubscriptionOptionsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/PushUtil.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RGBColorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCCertificate.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCCertificateBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCConfigurationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCDTMFSenderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCDTMFToneChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCDTMFToneChangeEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCDataChannelEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCDataChannelEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCIceCandidateBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCIdentityAssertionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCIdentityProviderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCIdentityProviderRegistrar.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCPeerConnectionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCPeerConnectionIceEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCPeerConnectionIceEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCPeerConnectionStaticBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCRtpReceiverBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCRtpSenderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCSessionDescriptionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCStatsReportBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCTrackEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RTCTrackEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RadioNodeList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RadioNodeListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RangeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RecordErrorEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RecordErrorEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RegisterBindings.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RegisterWorkerBindings.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RegisterWorkerDebuggerBindings.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RegisterWorkletBindings.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RemoteVideoDecoder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Request.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ResolveSystemBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Response.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ResponseBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ResponsiveImageSelector.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/RootedDictionary.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SRICheck.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SRILogHelper.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SRIMetadata.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAngle.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAngleBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimateElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimateElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimateMotionElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimateMotionElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimateTransformElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimateTransformElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedAngle.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedAngleBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedBoolean.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedBooleanBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedEnumeration.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedEnumerationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedInteger.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedIntegerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedLength.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedLengthBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedLengthListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedNumber.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedNumberBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedNumberListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedPathDataBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedPointsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedPreserveAspectRatioBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedRect.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedRectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedString.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedStringBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedTransformList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimatedTransformListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimationElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGAnimationElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGCircleElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGCircleElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGClipPathElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGClipPathElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGComponentTransferFunctionElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGComponentTransferFunctionElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGDefsElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGDefsElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGDescElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGDescElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGDocument.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGEllipseElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGEllipseElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEBlendElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEBlendElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEColorMatrixElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEColorMatrixElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEComponentTransferElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEComponentTransferElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFECompositeElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFECompositeElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEConvolveMatrixElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEConvolveMatrixElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEDiffuseLightingElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEDiffuseLightingElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEDisplacementMapElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEDisplacementMapElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEDistantLightElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEDistantLightElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEDropShadowElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEDropShadowElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEFloodElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEFloodElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEFuncAElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEFuncBElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEFuncGElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEFuncRElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEGaussianBlurElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEGaussianBlurElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEImageElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEImageElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEMergeElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEMergeElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEMergeNodeElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEMergeNodeElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEMorphologyElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEMorphologyElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEOffsetElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEOffsetElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEPointLightElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFEPointLightElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFESpecularLightingElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFESpecularLightingElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFESpotLightElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFESpotLightElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFETileElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFETileElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFETurbulenceElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFETurbulenceElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFilterElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFilterElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFilterPrimitiveStandardAttributesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGFitToViewBoxBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGForeignObjectElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGForeignObjectElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGGElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGGElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGGradientElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGGradientElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGGraphicsElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGGraphicsElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGIRect.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGImageElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGImageElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGLengthBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGLengthListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGLineElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGLineElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGLinearGradientElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMPathElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMPathElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMarkerElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMarkerElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMaskElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMaskElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMatrix.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMatrixBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMetadataElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGMetadataElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGNumberBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGNumberListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPathElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPathElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPathSegBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPathSegListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPatternElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPatternElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPointBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPointListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPolygonElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPolygonElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPolylineElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPolylineElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGPreserveAspectRatioBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGRadialGradientElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGRect.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGRectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGRectElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGRectElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGSVGElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGSVGElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGScriptElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGScriptElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGSetElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGSetElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGStopElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGStopElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGStringListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGStyleElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGStyleElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGSwitchElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGSwitchElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGSymbolElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGSymbolElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTSpanElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTSpanElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTests.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTestsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTextContentElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTextContentElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTextElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTextElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTextPathElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTextPathElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTextPositioningElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTextPositioningElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTitleElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTitleElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTransform.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTransformBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTransformListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGTransformableElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGURIReferenceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGUnitTypeValuesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGUnitTypesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGUseElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGUseElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGViewElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGViewElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGZoomAndPanBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGZoomAndPanValuesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGZoomEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SVGZoomEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SameProcessMessageQueue.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScreenBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScreenOrientation.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScreenOrientationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScriptProcessorNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScriptProcessorNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScriptSettings.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScrollAreaEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScrollAreaEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScrollBoxObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScrollBoxObjectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScrollViewChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ScrollViewChangeEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SecureElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SecureElementManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Selection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SelectionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerCommon.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerContainer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerContainerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerEvents.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerGlobalScopeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerMessageEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerMessageEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerRegistrar.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerRegistration.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ServiceWorkerRegistrationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SettingChangeNotificationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SettingsManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ShadowRoot.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ShadowRootBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SharedWorkerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SharedWorkerGlobalScopeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SimpleGestureEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SimpleGestureEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SimpleGlobalObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SocketCommonBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SourceBuffer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SourceBufferBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SourceBufferList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SourceBufferListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechGrammar.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechGrammarBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechGrammarList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechGrammarListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognition.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionAlternative.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionAlternativeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionError.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionErrorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionResult.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionResultBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionResultList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechRecognitionResultListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechStreamListener.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesis.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisErrorEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisErrorEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisUtterance.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisUtteranceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisVoice.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SpeechSynthesisVoiceBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StereoPannerNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StereoPannerNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StorageBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StorageEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StorageEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StorageManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StorageManagerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StorageTypeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StructuredClone.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StructuredCloneHolder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StructuredCloneTags.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleRuleChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleRuleChangeEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleSheetApplicableStateChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleSheetApplicableStateChangeEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleSheetBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleSheetChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleSheetChangeEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleSheetList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/StyleSheetListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SubtleCrypto.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SubtleCryptoBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/SystemUpdateBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPServerSocket.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPServerSocketBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPServerSocketEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPServerSocketEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPSocket.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPSocketBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPSocketErrorEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPSocketErrorEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPSocketEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TCPSocketEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TabChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TabContext.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TabGroup.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TabMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TabParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Text.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextClause.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextClauseBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextDecoder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextDecoderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextEncoder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextEncoderBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextMetrics.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrack.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackCue.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackCueBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackCueList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackCueListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TextTrackRegion.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ThreadSafeChromeUtilsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TimeEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TimeEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TimeRanges.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TimeRangesBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Timeout.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ToJSValue.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Touch.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TouchBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TouchEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TouchEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TouchListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TrackEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TrackEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TransitionEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TransitionEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TreeBoxObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TreeBoxObjectBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TreeColumnBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TreeColumnsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TreeWalker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TreeWalkerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/TypedArray.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/U2F.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/U2FBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UDPMessageEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UDPMessageEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UDPSocket.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UDPSocketBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UIEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UIEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/URL.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/URLBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/URLSearchParams.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/URLSearchParamsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/USBToken.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UnionConversions.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UnionMember.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UnionTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UseCounterList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UserProximityEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/UserProximityEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VRDisplay.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VRDisplayBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VREventObserver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VTTCueBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VTTRegionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ValidityState.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ValidityStateBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoDecoderManagerChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoDecoderManagerParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoPlaybackQuality.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoPlaybackQualityBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoStreamTrack.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoStreamTrackBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoTrack.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoTrackBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoTrackList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/VideoTrackListBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WakeLock.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WaveShaperNode.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WaveShaperNodeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebComponentsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebCryptoCommon.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebCryptoTask.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebCryptoThreadPool.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebGL2RenderingContextBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebGLContextEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebGLContextEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebGLRenderingContextBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebGLVertexArrayObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebIDLGlobalNameHash.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebKitCSSMatrix.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebKitCSSMatrixBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebSocket.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebSocketBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebrtcDeprecatedBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WebrtcGlobalInformationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WheelEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WheelEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WidevineCDMManifestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WifiOptionsBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WindowBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WindowOrWorkerGlobalScopeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WindowOrientationObserver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WindowRootBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerDebuggerGlobalScopeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerGlobalScopeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerLocation.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerLocationBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerNavigator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerNavigatorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerPrefs.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerPrivate.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerRunnable.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkerScope.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/Worklet.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkletBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkletGlobalScope.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/WorkletGlobalScopeBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XBLChildrenElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLDocument.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLDocumentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLHttpRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLHttpRequestBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLHttpRequestEventTarget.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLHttpRequestEventTargetBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLHttpRequestMainThread.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLHttpRequestString.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLHttpRequestUpload.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLHttpRequestUploadBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLSerializerBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLStylesheetProcessingInstruction.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XMLStylesheetProcessingInstructionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XPathEvaluator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XPathEvaluatorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XPathExpression.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XPathExpressionBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XPathNSResolverBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XPathResult.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XPathResultBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XSLTProcessorBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XULCommandEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XULCommandEventBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XULDocumentBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XULElementBinding.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/XrayExpandoClass.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/archivereader/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/archivereader/ArchiveEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/archivereader/ArchiveReader.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/archivereader/ArchiveReaderCommon.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/archivereader/ArchiveRequest.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/archivereader/ArchiveZipEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/archivereader/ArchiveZipFile.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/asmjscache/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/asmjscache/AsmJSCache.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/battery/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/battery/Constants.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/battery/Types.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/cache/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Action.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/ActorChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/ActorUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/AutoUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Cache.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheOpChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheOpParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheStorage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheStorageChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheStorageParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheStreamControlChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheStreamControlParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/CacheWorkerHolder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Connection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Context.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/DBAction.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/DBSchema.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/FileUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/IPCUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Manager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/ManagerId.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/PrincipalVerifier.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/QuotaClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/ReadStream.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/SavedTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/StreamControl.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/StreamList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/TypeUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/cache/Types.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/filehandle/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/filehandle/ActorsChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/filehandle/ActorsParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/filehandle/SerializationHelpers.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/indexedDB/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/indexedDB/ActorsParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/indexedDB/FileSnapshot.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/indexedDB/Key.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/indexedDB/KeyPath.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/indexedDB/SerializationHelpers.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/ipc/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ipc/BlobChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ipc/BlobParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ipc/IdType.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ipc/StructuredCloneData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/ipc/nsIRemoteBlob.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/network/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/Connection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/Constants.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/TCPServerSocketChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/TCPServerSocketParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/TCPSocketChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/TCPSocketParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/Types.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/UDPSocketChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/network/UDPSocketParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsBrowserElement.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsCSPContext.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsCSPService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsCSPUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsContentSecurityManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsIContentChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsIContentParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsMixedContentBlocker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsSVGAnimatedTransformList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsSpeechTask.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsSynthVoiceRegistry.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/nsXMLElement.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/power/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/power/PowerManagerService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/power/Types.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/quota/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/ActorsParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/Client.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/FileStreams.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/OriginScope.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/PersistenceType.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/QuotaCommon.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/QuotaManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/QuotaManagerService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/QuotaObject.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/SerializationHelpers.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/quota/UsageInfo.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/time/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/time/DateCacheCleaner.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/time/TimeChangeObserver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/time/TimeManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/time/TimeService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/txMozillaXSLTProcessor.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/workers/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/RuntimeService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/ServiceWorkerInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/ServiceWorkerManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/ServiceWorkerRegistrationInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/WorkerDebuggerManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/Workers.h +drwxr-xr-x root/root usr/include/firefox/mozilla/dom/workers/bindings/ +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/bindings/ServiceWorker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/bindings/ServiceWorkerClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/bindings/ServiceWorkerClients.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/bindings/ServiceWorkerWindowClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/bindings/SharedWorker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/dom/workers/bindings/WorkerHolder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/double-conversion.h +drwxr-xr-x root/root usr/include/firefox/mozilla/embedding/ +drwxr-xr-x root/root usr/include/firefox/mozilla/embedding/printingui/ +-rw-r--r-- root/root usr/include/firefox/mozilla/embedding/printingui/PrintingParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/fallible.h +drwxr-xr-x root/root usr/include/firefox/mozilla/gfx/ +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/2D.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BaseCoord.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BaseMargin.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BasePoint.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BasePoint3D.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BasePoint4D.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BaseRect.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BaseSize.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BezierUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Blur.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/BorrowedContext.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Coord.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/CriticalSection.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/D3D11Checks.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/DataSurfaceHelpers.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/DeviceManagerDx.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/DrawEventRecorder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/DrawTargetTiled.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Filters.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/GPUChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/GPUParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/GPUProcessHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/GPUProcessImpl.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/GPUProcessListener.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/GPUProcessManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Helpers.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/HelpersCairo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/HelpersSkia.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/IterableArena.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/JobScheduler.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/JobScheduler_posix.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/JobScheduler_win32.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Logging.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/LoggingConstants.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Matrix.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/MatrixFwd.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/NumericTools.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/PathHelpers.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/PatternHelpers.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Point.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Polygon.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/PrintTarget.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/PrintTargetPDF.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/PrintTargetPS.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/PrintTargetThebes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Quaternion.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/RecordedEvent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/RecordingTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Rect.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Scale.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/ScaleFactor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/ScaleFactors2D.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/SharedDIB.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/SourceSurfaceCairo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/SourceSurfaceRawData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/StackArray.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/TiledRegion.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Tools.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Triangle.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/Types.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/UserData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/VsyncBridgeChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/VsyncBridgeParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/VsyncIOThreadHolder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/gfxVarReceiver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/gfxVars.h +-rw-r--r-- root/root usr/include/firefox/mozilla/gfx/ssse3-scaler.h +drwxr-xr-x root/root usr/include/firefox/mozilla/ipc/ +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/BackgroundChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/BackgroundParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/BackgroundUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/BrowserProcessSubThread.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/CrashReporterClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/CrashReporterHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/CrossProcessMutex.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/DocumentRendererChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/DocumentRendererParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/FileDescriptor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/FileDescriptorSetChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/FileDescriptorSetParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/FileDescriptorUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/GeckoChildProcessHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/IOThreadChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/IPCStreamUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/InputStreamUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/MessageChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/MessageLink.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/Neutering.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/ProcessChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/ProtocolUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/ScopedXREEmbed.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/SendStream.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/SendStreamAlloc.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/SharedMemory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/SharedMemoryBasic.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/SharedMemoryBasic_chromium.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/TaskFactory.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/TestShellChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/TestShellParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/Transport.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/Transport_posix.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/URIUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/WindowsMessageLoop.h +-rw-r--r-- root/root usr/include/firefox/mozilla/ipc/XPCShellEnvironment.h +drwxr-xr-x root/root usr/include/firefox/mozilla/jsipc/ +-rw-r--r-- root/root usr/include/firefox/mozilla/jsipc/CpowHolder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/jsipc/CrossProcessObjectWrappers.h +drwxr-xr-x root/root usr/include/firefox/mozilla/layers/ +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZCCallbackHelper.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZCTreeManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZCTreeManagerChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZCTreeManagerParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZEventState.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZTestData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZThreadUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/APZUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ActiveElementManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/AsyncCanvasRenderer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/AsyncCompositionManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/AsyncDragMetrics.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/AsyncPanZoomAnimation.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/AtomicRefCountedWithFinalize.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/AxisPhysicsMSDModel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/AxisPhysicsModel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/BSPTree.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/BasicCompositor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/BufferTexture.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CanvasClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CanvasLayerComposite.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ChromeProcessController.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ColorLayerComposite.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositableChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositableClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositableForwarder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositableTransactionParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositingRenderTargetOGL.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/Compositor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositorBridgeChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositorBridgeParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositorController.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositorOGL.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositorSession.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositorThread.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CompositorTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ContainerLayerComposite.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ContentClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ContentHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ContentProcessController.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/CrossProcessCompositorBridgeParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/D3D11ShareHandleImage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/D3D9SurfaceImage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/DoubleTapToZoom.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/Effects.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/FrameUniformityData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/GPUVideoTextureClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/GPUVideoTextureHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/GeckoContentController.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/GonkNativeHandle.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/GonkNativeHandleUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/IAPZCTreeManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ISurfaceAllocator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ImageBridgeChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ImageBridgeParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ImageClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ImageContainerChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ImageContainerParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ImageDataSerializer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ImageHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ImageLayerComposite.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/InProcessCompositorSession.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/InputAPZContext.h +-rwxr-xr-x root/root usr/include/firefox/mozilla/layers/KnowsCompositor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/LayerAnimationUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/LayerManagerComposite.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/LayerMetricsWrapper.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/LayerTransactionChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/LayerTransactionParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/LayerTreeOwnerTracker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/LayersTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/MacIOSurfaceTextureClientOGL.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/MacIOSurfaceTextureHostBasic.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/MacIOSurfaceTextureHostOGL.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/MetricsSharingController.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/PaintedLayerComposite.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/PersistentBufferProvider.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/RemoteCompositorSession.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/RemoteContentController.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/RenderTrace.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ScrollInputMethods.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ScrollLinkedEffectDetector.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ShadowLayerChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ShadowLayerUtilsX11.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/ShadowLayers.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/SharedPlanarYCbCrImage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/SharedRGBImage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/SingleTiledContentClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/SynchronousTask.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureClientOGL.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureClientPool.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureClientRecycleAllocator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureClientSharedSurface.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureClientX11.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureForwarder.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureHostBasic.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureHostOGL.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TextureWrapperImage.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TiledContentClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TiledContentHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TouchActionHelper.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TouchCounter.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/TransactionIdAllocator.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/VideoBridgeChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/VideoBridgeParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/X11TextureHost.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/X11TextureSourceBasic.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layers/X11TextureSourceOGL.h +drwxr-xr-x root/root usr/include/firefox/mozilla/layout/ +-rw-r--r-- root/root usr/include/firefox/mozilla/layout/FrameChildList.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layout/RemotePrintJobChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layout/RemotePrintJobParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layout/RenderFrameChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layout/RenderFrameParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layout/VsyncChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/layout/VsyncParent.h +drwxr-xr-x root/root usr/include/firefox/mozilla/media/ +-rw-r--r-- root/root usr/include/firefox/mozilla/media/CamerasTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/DeviceChangeCallback.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaSystemResourceClient.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaSystemResourceManager.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaSystemResourceManagerChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaSystemResourceManagerParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaSystemResourceMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaSystemResourceService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaSystemResourceTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaTaskUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/media/MediaUtils.h +drwxr-xr-x root/root usr/include/firefox/mozilla/media/webrtc/ +-rw-r--r-- root/root usr/include/firefox/mozilla/media/webrtc/WebrtcGlobal.h +-rw-r--r-- root/root usr/include/firefox/mozilla/mips.h +-rw-r--r-- root/root usr/include/firefox/mozilla/mozSpellChecker.h +-rw-r--r-- root/root usr/include/firefox/mozilla/mozalloc.h +-rw-r--r-- root/root usr/include/firefox/mozilla/mozalloc_abort.h +-rw-r--r-- root/root usr/include/firefox/mozilla/mozalloc_oom.h +drwxr-xr-x root/root usr/include/firefox/mozilla/net/ +-rw-r--r-- root/root usr/include/firefox/mozilla/net/AltDataOutputStreamChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/AltDataOutputStreamParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/BaseWebSocketChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/CaptivePortalService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/ChannelDiverterChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/ChannelDiverterParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/ChannelEventQueue.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/ChildDNSService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/CookieServiceChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/CookieServiceParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DNS.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DNSListenerProxy.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DNSRequestChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DNSRequestParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/Dashboard.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DashboardTypes.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DataChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DataChannelListener.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DataChannelParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/DataChannelProtocol.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/FTPChannelChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/FTPChannelParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/HttpBaseChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/HttpChannelChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/HttpChannelParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/HttpInfo.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/IPCTransportProvider.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/MemoryDownloader.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/NeckoChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/NeckoCommon.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/NeckoMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/NeckoParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/NullHttpChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/PDNSParams.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/PHttpChannelParams.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/PSpdyPush.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/Predictor.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/ReferrerPolicy.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/TimingStruct.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WebSocketChannel.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WebSocketChannelChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WebSocketChannelParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WebSocketEventListenerChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WebSocketEventListenerParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WebSocketEventService.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WebSocketFrame.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WyciwygChannelChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/WyciwygChannelParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/nsFileProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/mozilla/net/usrsctp.h +-rw-r--r-- root/root usr/include/firefox/mozilla/nsMemoryInfoDumper.h +drwxr-xr-x root/root usr/include/firefox/mozilla/places/ +-rw-r--r-- root/root usr/include/firefox/mozilla/places/Database.h +-rw-r--r-- root/root usr/include/firefox/mozilla/places/History.h +drwxr-xr-x root/root usr/include/firefox/mozilla/plugins/ +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/AStream.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/BrowserStreamChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/BrowserStreamParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/ChildAsyncCall.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/ChildTimer.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/NPEventAndroid.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/NPEventOSX.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/NPEventUnix.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/NPEventWindows.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginAsyncSurrogate.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginBridge.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginDataResolver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginInstanceChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginInstanceParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginModuleChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginModuleParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginProcessChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginProcessParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginQuirks.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginScriptableObjectChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginScriptableObjectParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginScriptableObjectUtils-inl.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginScriptableObjectUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginStreamChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginStreamParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginUtilsOSX.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginWidgetChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/PluginWidgetParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/StreamNotifyChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/plugins/StreamNotifyParent.h +drwxr-xr-x root/root usr/include/firefox/mozilla/psm/ +-rw-r--r-- root/root usr/include/firefox/mozilla/psm/PSMContentListener.h +drwxr-xr-x root/root usr/include/firefox/mozilla/scache/ +-rw-r--r-- root/root usr/include/firefox/mozilla/scache/StartupCache.h +-rw-r--r-- root/root usr/include/firefox/mozilla/scache/StartupCacheUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/storage.h +drwxr-xr-x root/root usr/include/firefox/mozilla/storage/ +-rw-r--r-- root/root usr/include/firefox/mozilla/storage/StatementCache.h +-rw-r--r-- root/root usr/include/firefox/mozilla/storage/Variant.h +-rw-r--r-- root/root usr/include/firefox/mozilla/storage/Variant_inl.h +-rw-r--r-- root/root usr/include/firefox/mozilla/throw_gcc.h +-rw-r--r-- root/root usr/include/firefox/mozilla/utils.h +drwxr-xr-x root/root usr/include/firefox/mozilla/widget/ +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/CompositorWidget.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/CompositorWidgetChild.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/CompositorWidgetParent.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/CompositorWidgetVsyncObserver.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/IMEData.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/InProcessCompositorWidget.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/InProcessX11CompositorWidget.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/LSBUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/PuppetBidiKeyboard.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/WidgetMessageUtils.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/WindowSurface.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/WindowSurfaceProvider.h +-rw-r--r-- root/root usr/include/firefox/mozilla/widget/X11CompositorWidget.h +-rw-r--r-- root/root usr/include/firefox/mozmemory.h +-rw-r--r-- root/root usr/include/firefox/mozmemory_wrap.h +drwxr-xr-x root/root usr/include/firefox/mp4_demuxer/ +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/Adts.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/AnnexB.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/Atom.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/AtomType.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/BitReader.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/BufferStream.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/ByteReader.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/ByteWriter.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/DecoderData.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/H264.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/Index.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/Interval.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/MP4Metadata.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/MoofParser.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/ResourceStream.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/SinfParser.h +-rw-r--r-- root/root usr/include/firefox/mp4_demuxer/Stream.h +drwxr-xr-x root/root usr/include/firefox/mtransport/ +-rw-r--r-- root/root usr/include/firefox/mtransport/dtlsidentity.h +-rw-r--r-- root/root usr/include/firefox/mtransport/m_cpp_utils.h +-rw-r--r-- root/root usr/include/firefox/mtransport/nricectx.h +-rw-r--r-- root/root usr/include/firefox/mtransport/nricemediastream.h +-rw-r--r-- root/root usr/include/firefox/mtransport/nriceresolverfake.h +-rw-r--r-- root/root usr/include/firefox/mtransport/rlogconnector.h +-rw-r--r-- root/root usr/include/firefox/mtransport/runnable_utils.h +-rw-r--r-- root/root usr/include/firefox/mtransport/sigslot.h +-rw-r--r-- root/root usr/include/firefox/mtransport/simpletokenbucket.h +-rw-r--r-- root/root usr/include/firefox/mtransport/stun_socket_filter.h +-rw-r--r-- root/root usr/include/firefox/mtransport/transportflow.h +-rw-r--r-- root/root usr/include/firefox/mtransport/transportlayer.h +-rw-r--r-- root/root usr/include/firefox/mtransport/transportlayerdtls.h +-rw-r--r-- root/root usr/include/firefox/mtransport/transportlayerice.h +-rw-r--r-- root/root usr/include/firefox/mtransport/transportlayerlog.h +-rw-r--r-- root/root usr/include/firefox/mtransport/transportlayerloopback.h +-rw-r--r-- root/root usr/include/firefox/mtransport/transportlayerprsock.h +-rw-r--r-- root/root usr/include/firefox/necko-config.h +drwxr-xr-x root/root usr/include/firefox/nestegg/ +-rw-r--r-- root/root usr/include/firefox/nestegg/nestegg.h +-rw-r--r-- root/root usr/include/firefox/netCore.h +-rw-r--r-- root/root usr/include/firefox/npapi.h +-rw-r--r-- root/root usr/include/firefox/npfunctions.h +-rw-r--r-- root/root usr/include/firefox/npruntime.h +-rw-r--r-- root/root usr/include/firefox/nptypes.h +-rw-r--r-- root/root usr/include/firefox/nsAHtml5TreeBuilderState.h +-rw-r--r-- root/root usr/include/firefox/nsAHtml5TreeOpSink.h +-rw-r--r-- root/root usr/include/firefox/nsASocketHandler.h +-rw-r--r-- root/root usr/include/firefox/nsAString.h +-rw-r--r-- root/root usr/include/firefox/nsAXPCNativeCallContext.h +-rw-r--r-- root/root usr/include/firefox/nsAboutProtocolUtils.h +-rw-r--r-- root/root usr/include/firefox/nsAccessibilityService.h +-rw-r--r-- root/root usr/include/firefox/nsAgg.h +-rw-r--r-- root/root usr/include/firefox/nsAlertsUtils.h +-rw-r--r-- root/root usr/include/firefox/nsAlgorithm.h +-rw-r--r-- root/root usr/include/firefox/nsAnimationManager.h +-rw-r--r-- root/root usr/include/firefox/nsAnonymousTemporaryFile.h +-rw-r--r-- root/root usr/include/firefox/nsAppDirectoryServiceDefs.h +-rw-r--r-- root/root usr/include/firefox/nsAppRunner.h +-rw-r--r-- root/root usr/include/firefox/nsAppShellCID.h +-rw-r--r-- root/root usr/include/firefox/nsApplicationCacheService.h +-rw-r--r-- root/root usr/include/firefox/nsArenaMemoryStats.h +-rw-r--r-- root/root usr/include/firefox/nsArray.h +-rw-r--r-- root/root usr/include/firefox/nsArrayEnumerator.h +-rw-r--r-- root/root usr/include/firefox/nsArrayUtils.h +-rw-r--r-- root/root usr/include/firefox/nsAsyncRedirectVerifyHelper.h +-rw-r--r-- root/root usr/include/firefox/nsAtomListUtils.h +-rw-r--r-- root/root usr/include/firefox/nsAtomService.h +-rw-r--r-- root/root usr/include/firefox/nsAttrAndChildArray.h +-rw-r--r-- root/root usr/include/firefox/nsAttrName.h +-rw-r--r-- root/root usr/include/firefox/nsAttrValue.h +-rw-r--r-- root/root usr/include/firefox/nsAttrValueInlines.h +-rw-r--r-- root/root usr/include/firefox/nsAutoPtr.h +-rw-r--r-- root/root usr/include/firefox/nsAutoRef.h +-rw-r--r-- root/root usr/include/firefox/nsBaseHashtable.h +-rw-r--r-- root/root usr/include/firefox/nsBaseScreen.h +-rw-r--r-- root/root usr/include/firefox/nsBaseWidget.h +-rw-r--r-- root/root usr/include/firefox/nsBidi.h +-rw-r--r-- root/root usr/include/firefox/nsBidiPresUtils.h +-rw-r--r-- root/root usr/include/firefox/nsBidiUtils.h +-rw-r--r-- root/root usr/include/firefox/nsBidi_ICU.h +-rw-r--r-- root/root usr/include/firefox/nsBindingManager.h +-rw-r--r-- root/root usr/include/firefox/nsBoundingMetrics.h +-rw-r--r-- root/root usr/include/firefox/nsBox.h +-rw-r--r-- root/root usr/include/firefox/nsBrowserCompsCID.h +-rw-r--r-- root/root usr/include/firefox/nsCDefaultURIFixup.h +-rw-r--r-- root/root usr/include/firefox/nsCExternalHandlerService.h +-rw-r--r-- root/root usr/include/firefox/nsCOMArray.h +-rw-r--r-- root/root usr/include/firefox/nsCOMPtr.h +-rw-r--r-- root/root usr/include/firefox/nsCORSListenerProxy.h +-rw-r--r-- root/root usr/include/firefox/nsCPrefetchService.h +-rw-r--r-- root/root usr/include/firefox/nsCRT.h +-rw-r--r-- root/root usr/include/firefox/nsCRTGlue.h +-rw-r--r-- root/root usr/include/firefox/nsCSSAnonBoxList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSAnonBoxes.h +-rw-r--r-- root/root usr/include/firefox/nsCSSCounterDescList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSFontDescList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSFrameConstructor.h +-rw-r--r-- root/root usr/include/firefox/nsCSSKeywordList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSKeywords.h +-rw-r--r-- root/root usr/include/firefox/nsCSSParser.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPropAliasList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPropList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPropLogicalGroupList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPropertyID.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPropertyIDSet.h +-rw-r--r-- root/root usr/include/firefox/nsCSSProps.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPseudoClassList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPseudoClasses.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPseudoElementList.h +-rw-r--r-- root/root usr/include/firefox/nsCSSPseudoElements.h +-rw-r--r-- root/root usr/include/firefox/nsCSSRuleProcessor.h +-rw-r--r-- root/root usr/include/firefox/nsCSSScanner.h +-rw-r--r-- root/root usr/include/firefox/nsCSSValue.h +-rw-r--r-- root/root usr/include/firefox/nsCTooltipTextProvider.h +-rw-r--r-- root/root usr/include/firefox/nsCURILoader.h +-rw-r--r-- root/root usr/include/firefox/nsCWebBrowser.h +-rw-r--r-- root/root usr/include/firefox/nsCWebBrowserPersist.h +-rw-r--r-- root/root usr/include/firefox/nsCacheService.h +-rw-r--r-- root/root usr/include/firefox/nsCanvasFrame.h +-rw-r--r-- root/root usr/include/firefox/nsCaret.h +-rw-r--r-- root/root usr/include/firefox/nsCaseTreatment.h +-rw-r--r-- root/root usr/include/firefox/nsCategoryCache.h +-rw-r--r-- root/root usr/include/firefox/nsCategoryManagerUtils.h +-rw-r--r-- root/root usr/include/firefox/nsChangeHint.h +-rw-r--r-- root/root usr/include/firefox/nsCharSeparatedTokenizer.h +-rw-r--r-- root/root usr/include/firefox/nsCharTraits.h +-rw-r--r-- root/root usr/include/firefox/nsCharsetSource.h +-rw-r--r-- root/root usr/include/firefox/nsCheapSets.h +-rw-r--r-- root/root usr/include/firefox/nsChildContentList.h +-rw-r--r-- root/root usr/include/firefox/nsClassHashtable.h +-rw-r--r-- root/root usr/include/firefox/nsClientAuthRemember.h +-rw-r--r-- root/root usr/include/firefox/nsCollation.h +-rw-r--r-- root/root usr/include/firefox/nsCollationCID.h +-rw-r--r-- root/root usr/include/firefox/nsColor.h +-rw-r--r-- root/root usr/include/firefox/nsColorNameList.h +-rw-r--r-- root/root usr/include/firefox/nsColorNames.h +-rw-r--r-- root/root usr/include/firefox/nsCom.h +-rw-r--r-- root/root usr/include/firefox/nsCompatibility.h +-rw-r--r-- root/root usr/include/firefox/nsComponentManagerUtils.h +-rw-r--r-- root/root usr/include/firefox/nsComputedDOMStylePropertyList.h +-rw-r--r-- root/root usr/include/firefox/nsContainerFrame.h +-rw-r--r-- root/root usr/include/firefox/nsContentCID.h +-rw-r--r-- root/root usr/include/firefox/nsContentCreatorFunctions.h +-rw-r--r-- root/root usr/include/firefox/nsContentDLF.h +-rw-r--r-- root/root usr/include/firefox/nsContentList.h +-rw-r--r-- root/root usr/include/firefox/nsContentListDeclarations.h +-rw-r--r-- root/root usr/include/firefox/nsContentPermissionHelper.h +-rw-r--r-- root/root usr/include/firefox/nsContentPolicyUtils.h +-rw-r--r-- root/root usr/include/firefox/nsContentSecurityManager.h +-rw-r--r-- root/root usr/include/firefox/nsContentSink.h +-rw-r--r-- root/root usr/include/firefox/nsContentTypeParser.h +-rw-r--r-- root/root usr/include/firefox/nsContentUtils.h +-rw-r--r-- root/root usr/include/firefox/nsCoord.h +-rw-r--r-- root/root usr/include/firefox/nsCopySupport.h +-rw-r--r-- root/root usr/include/firefox/nsCrypto.h +-rw-r--r-- root/root usr/include/firefox/nsCycleCollectionNoteChild.h +-rw-r--r-- root/root usr/include/firefox/nsCycleCollectionNoteRootCallback.h +-rw-r--r-- root/root usr/include/firefox/nsCycleCollectionParticipant.h +-rw-r--r-- root/root usr/include/firefox/nsCycleCollectionTraversalCallback.h +-rw-r--r-- root/root usr/include/firefox/nsCycleCollector.h +-rw-r--r-- root/root usr/include/firefox/nsDOMAttributeMap.h +-rw-r--r-- root/root usr/include/firefox/nsDOMCID.h +-rw-r--r-- root/root usr/include/firefox/nsDOMCSSAttrDeclaration.h +-rw-r--r-- root/root usr/include/firefox/nsDOMCSSDeclaration.h +-rw-r--r-- root/root usr/include/firefox/nsDOMCSSRGBColor.h +-rw-r--r-- root/root usr/include/firefox/nsDOMClassInfoClasses.h +-rw-r--r-- root/root usr/include/firefox/nsDOMClassInfoID.h +-rw-r--r-- root/root usr/include/firefox/nsDOMDataChannel.h +-rw-r--r-- root/root usr/include/firefox/nsDOMDataChannelDeclarations.h +-rw-r--r-- root/root usr/include/firefox/nsDOMJSUtils.h +-rw-r--r-- root/root usr/include/firefox/nsDOMNavigationTiming.h +-rw-r--r-- root/root usr/include/firefox/nsDOMOfflineResourceList.h +-rw-r--r-- root/root usr/include/firefox/nsDOMString.h +-rw-r--r-- root/root usr/include/firefox/nsDataHashtable.h +-rw-r--r-- root/root usr/include/firefox/nsDateTimeFormatCID.h +-rw-r--r-- root/root usr/include/firefox/nsDebug.h +-rw-r--r-- root/root usr/include/firefox/nsDebugImpl.h +-rw-r--r-- root/root usr/include/firefox/nsDeleteDir.h +-rw-r--r-- root/root usr/include/firefox/nsDependentString.h +-rw-r--r-- root/root usr/include/firefox/nsDependentSubstring.h +-rw-r--r-- root/root usr/include/firefox/nsDeprecatedOperationList.h +-rw-r--r-- root/root usr/include/firefox/nsDeque.h +-rw-r--r-- root/root usr/include/firefox/nsDetectionConfident.h +-rw-r--r-- root/root usr/include/firefox/nsDeviceContext.h +-rw-r--r-- root/root usr/include/firefox/nsDeviceContextSpecProxy.h +-rw-r--r-- root/root usr/include/firefox/nsDeviceSensors.h +-rw-r--r-- root/root usr/include/firefox/nsDirection.h +-rw-r--r-- root/root usr/include/firefox/nsDirectoryService.h +-rw-r--r-- root/root usr/include/firefox/nsDirectoryServiceAtomList.h +-rw-r--r-- root/root usr/include/firefox/nsDirectoryServiceDefs.h +-rw-r--r-- root/root usr/include/firefox/nsDirectoryServiceUtils.h +-rw-r--r-- root/root usr/include/firefox/nsDisplayItemTypes.h +-rw-r--r-- root/root usr/include/firefox/nsDisplayItemTypesList.h +-rw-r--r-- root/root usr/include/firefox/nsDisplayList.h +-rw-r--r-- root/root usr/include/firefox/nsDisplayListInvalidation.h +-rw-r--r-- root/root usr/include/firefox/nsDocElementCreatedNotificationRunner.h +-rw-r--r-- root/root usr/include/firefox/nsDocLoader.h +-rw-r--r-- root/root usr/include/firefox/nsDocShellCID.h +-rw-r--r-- root/root usr/include/firefox/nsDocShellLoadTypes.h +-rw-r--r-- root/root usr/include/firefox/nsDocumentWarningList.h +-rw-r--r-- root/root usr/include/firefox/nsDumpUtils.h +-rw-r--r-- root/root usr/include/firefox/nsEditorCID.h +-rw-r--r-- root/root usr/include/firefox/nsEmbedCID.h +-rw-r--r-- root/root usr/include/firefox/nsEmbedString.h +-rw-r--r-- root/root usr/include/firefox/nsEncoderDecoderUtils.h +-rw-r--r-- root/root usr/include/firefox/nsEnumeratorUtils.h +-rw-r--r-- root/root usr/include/firefox/nsError.h +-rw-r--r-- root/root usr/include/firefox/nsEscape.h +-rw-r--r-- root/root usr/include/firefox/nsEventQueue.h +-rw-r--r-- root/root usr/include/firefox/nsExpirationTracker.h +-rw-r--r-- root/root usr/include/firefox/nsExternalHelperAppService.h +-rw-r--r-- root/root usr/include/firefox/nsFileStreams.h +-rw-r--r-- root/root usr/include/firefox/nsFilterInstance.h +-rw-r--r-- root/root usr/include/firefox/nsFocusManager.h +-rw-r--r-- root/root usr/include/firefox/nsFont.h +-rw-r--r-- root/root usr/include/firefox/nsFontFace.h +-rw-r--r-- root/root usr/include/firefox/nsFontFaceList.h +-rw-r--r-- root/root usr/include/firefox/nsFontMetrics.h +-rw-r--r-- root/root usr/include/firefox/nsFrame.h +-rw-r--r-- root/root usr/include/firefox/nsFrameIdList.h +-rw-r--r-- root/root usr/include/firefox/nsFrameList.h +-rw-r--r-- root/root usr/include/firefox/nsFrameManager.h +-rw-r--r-- root/root usr/include/firefox/nsFrameManagerBase.h +-rw-r--r-- root/root usr/include/firefox/nsFrameMessageManager.h +-rw-r--r-- root/root usr/include/firefox/nsFrameSelection.h +-rw-r--r-- root/root usr/include/firefox/nsFrameState.h +-rw-r--r-- root/root usr/include/firefox/nsFrameStateBits.h +-rw-r--r-- root/root usr/include/firefox/nsFrameTraversal.h +-rw-r--r-- root/root usr/include/firefox/nsGTKToolkit.h +-rw-r--r-- root/root usr/include/firefox/nsGZFileWriter.h +-rw-r--r-- root/root usr/include/firefox/nsGenericDOMDataNode.h +-rw-r--r-- root/root usr/include/firefox/nsGenericHTMLElement.h +-rw-r--r-- root/root usr/include/firefox/nsGeoPosition.h +-rw-r--r-- root/root usr/include/firefox/nsGeoPositionIPCSerialiser.h +-rw-r--r-- root/root usr/include/firefox/nsGfxCIID.h +-rw-r--r-- root/root usr/include/firefox/nsGkAtomList.h +-rw-r--r-- root/root usr/include/firefox/nsGkAtoms.h +-rw-r--r-- root/root usr/include/firefox/nsGrid.h +-rw-r--r-- root/root usr/include/firefox/nsGridCell.h +-rw-r--r-- root/root usr/include/firefox/nsGridLayout2.h +-rw-r--r-- root/root usr/include/firefox/nsGridRow.h +-rw-r--r-- root/root usr/include/firefox/nsGridRowGroupLayout.h +-rw-r--r-- root/root usr/include/firefox/nsGridRowLayout.h +-rw-r--r-- root/root usr/include/firefox/nsGridRowLeafFrame.h +-rw-r--r-- root/root usr/include/firefox/nsGridRowLeafLayout.h +-rw-r--r-- root/root usr/include/firefox/nsHTMLDNSPrefetch.h +-rw-r--r-- root/root usr/include/firefox/nsHTMLParts.h +-rw-r--r-- root/root usr/include/firefox/nsHTMLTagList.h +-rw-r--r-- root/root usr/include/firefox/nsHTMLTags.h +-rw-r--r-- root/root usr/include/firefox/nsHashKeys.h +-rw-r--r-- root/root usr/include/firefox/nsHashPropertyBag.h +-rw-r--r-- root/root usr/include/firefox/nsHostObjectProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsHostObjectURI.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5ArrayCopy.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5AtomList.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5AtomTable.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5Atoms.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5ByteReadable.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5DependentUTF16Buffer.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5DocumentBuilder.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5DocumentMode.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5HtmlAttributes.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5Macros.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5MetaScanner.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5MetaScannerHSupplement.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5Module.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5NamedCharacters.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5NamedCharactersAccel.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5OplessBuilder.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5OwningUTF16Buffer.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5Parser.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5PlainTextUtils.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5RefPtr.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5SVGLoadDispatcher.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5Speculation.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5SpeculativeLoad.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5StreamListener.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5StreamParser.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5StringParser.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5TreeOpExecutor.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5TreeOpStage.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5TreeOperation.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5UTF16Buffer.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5UTF16BufferHSupplement.h +-rw-r--r-- root/root usr/include/firefox/nsHtml5ViewSourceUtils.h +-rw-r--r-- root/root usr/include/firefox/nsHttp.h +-rw-r--r-- root/root usr/include/firefox/nsHttpAtomList.h +-rw-r--r-- root/root usr/include/firefox/nsHttpHeaderArray.h +-rw-r--r-- root/root usr/include/firefox/nsHttpRequestHead.h +-rw-r--r-- root/root usr/include/firefox/nsHttpResponseHead.h +-rw-r--r-- root/root usr/include/firefox/nsHyphenationManager.h +-rw-r--r-- root/root usr/include/firefox/nsHyphenator.h +-rw-r--r-- root/root usr/include/firefox/nsIASN1Object.h +-rw-r--r-- root/root usr/include/firefox/nsIASN1PrintableItem.h +-rw-r--r-- root/root usr/include/firefox/nsIASN1Sequence.h +-rw-r--r-- root/root usr/include/firefox/nsIASN1Tree.h +-rw-r--r-- root/root usr/include/firefox/nsIAboutModule.h +-rw-r--r-- root/root usr/include/firefox/nsIAboutNewTabService.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibilityService.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessible.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleApplication.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleCaretMoveEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleEditableText.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleHideEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleHyperLink.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleHyperText.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleImage.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleObjectAttributeChangedEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessiblePivot.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleRelation.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleRole.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleSelectable.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleStateChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleStates.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleTable.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleTableChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleText.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleTextChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleTextRange.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleTypes.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleValue.h +-rw-r--r-- root/root usr/include/firefox/nsIAccessibleVirtualCursorChangeEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIAddonInterposition.h +-rw-r--r-- root/root usr/include/firefox/nsIAddonPolicyService.h +-rw-r--r-- root/root usr/include/firefox/nsIAlertsService.h +-rw-r--r-- root/root usr/include/firefox/nsIAnimationObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIAnnotationService.h +-rw-r--r-- root/root usr/include/firefox/nsIAnonymousContentCreator.h +-rw-r--r-- root/root usr/include/firefox/nsIAppShell.h +-rw-r--r-- root/root usr/include/firefox/nsIAppShellService.h +-rw-r--r-- root/root usr/include/firefox/nsIAppStartup.h +-rw-r--r-- root/root usr/include/firefox/nsIAppStartupNotifier.h +-rw-r--r-- root/root usr/include/firefox/nsIApplicationCache.h +-rw-r--r-- root/root usr/include/firefox/nsIApplicationCacheChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIApplicationCacheContainer.h +-rw-r--r-- root/root usr/include/firefox/nsIApplicationCacheService.h +-rw-r--r-- root/root usr/include/firefox/nsIApplicationChooser.h +-rw-r--r-- root/root usr/include/firefox/nsIApplicationReputation.h +-rw-r--r-- root/root usr/include/firefox/nsIAppsService.h +-rw-r--r-- root/root usr/include/firefox/nsIArray.h +-rw-r--r-- root/root usr/include/firefox/nsIArrayBufferInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIArrayExtensions.h +-rw-r--r-- root/root usr/include/firefox/nsIAssociatedContentSecurity.h +-rw-r--r-- root/root usr/include/firefox/nsIAsyncInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIAsyncOutputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIAsyncShutdown.h +-rw-r--r-- root/root usr/include/firefox/nsIAsyncStreamCopier.h +-rw-r--r-- root/root usr/include/firefox/nsIAsyncStreamCopier2.h +-rw-r--r-- root/root usr/include/firefox/nsIAsyncVerifyRedirectCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIAtom.h +-rw-r--r-- root/root usr/include/firefox/nsIAtomService.h +-rw-r--r-- root/root usr/include/firefox/nsIAttribute.h +-rw-r--r-- root/root usr/include/firefox/nsIAudioChannelAgent.h +-rw-r--r-- root/root usr/include/firefox/nsIAudioChannelService.h +-rw-r--r-- root/root usr/include/firefox/nsIAuthInformation.h +-rw-r--r-- root/root usr/include/firefox/nsIAuthModule.h +-rw-r--r-- root/root usr/include/firefox/nsIAuthPrompt.h +-rw-r--r-- root/root usr/include/firefox/nsIAuthPrompt2.h +-rw-r--r-- root/root usr/include/firefox/nsIAuthPromptAdapterFactory.h +-rw-r--r-- root/root usr/include/firefox/nsIAuthPromptCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIAuthPromptProvider.h +-rw-r--r-- root/root usr/include/firefox/nsIAutoCompleteController.h +-rw-r--r-- root/root usr/include/firefox/nsIAutoCompleteInput.h +-rw-r--r-- root/root usr/include/firefox/nsIAutoCompletePopup.h +-rw-r--r-- root/root usr/include/firefox/nsIAutoCompleteResult.h +-rw-r--r-- root/root usr/include/firefox/nsIAutoCompleteSearch.h +-rw-r--r-- root/root usr/include/firefox/nsIAutoCompleteSimpleResult.h +-rw-r--r-- root/root usr/include/firefox/nsIAutoConfig.h +-rw-r--r-- root/root usr/include/firefox/nsIBFCacheEntry.h +-rw-r--r-- root/root usr/include/firefox/nsIBackgroundFileSaver.h +-rw-r--r-- root/root usr/include/firefox/nsIBadCertListener2.h +-rw-r--r-- root/root usr/include/firefox/nsIBaseWindow.h +-rw-r--r-- root/root usr/include/firefox/nsIBidiKeyboard.h +-rw-r--r-- root/root usr/include/firefox/nsIBinaryInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIBinaryOutputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIBlocklistService.h +-rw-r--r-- root/root usr/include/firefox/nsIBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowser.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowserBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowserDOMWindow.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowserElementAPI.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowserGlue.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowserHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowserHistory.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowserProfileMigrator.h +-rw-r--r-- root/root usr/include/firefox/nsIBrowserSearchService.h +-rw-r--r-- root/root usr/include/firefox/nsIBufferedStreams.h +-rw-r--r-- root/root usr/include/firefox/nsIByteRangeRequest.h +-rw-r--r-- root/root usr/include/firefox/nsICSSDeclaration.h +-rw-r--r-- root/root usr/include/firefox/nsICSSLoaderObserver.h +-rw-r--r-- root/root usr/include/firefox/nsICSSPseudoComparator.h +-rw-r--r-- root/root usr/include/firefox/nsICSSStyleRuleDOMWrapper.h +-rw-r--r-- root/root usr/include/firefox/nsICSSUnprefixingService.h +-rw-r--r-- root/root usr/include/firefox/nsICache.h +-rw-r--r-- root/root usr/include/firefox/nsICacheEntry.h +-rw-r--r-- root/root usr/include/firefox/nsICacheEntryDescriptor.h +-rw-r--r-- root/root usr/include/firefox/nsICacheEntryDoomCallback.h +-rw-r--r-- root/root usr/include/firefox/nsICacheEntryOpenCallback.h +-rw-r--r-- root/root usr/include/firefox/nsICacheInfoChannel.h +-rw-r--r-- root/root usr/include/firefox/nsICacheListener.h +-rw-r--r-- root/root usr/include/firefox/nsICacheService.h +-rw-r--r-- root/root usr/include/firefox/nsICacheSession.h +-rw-r--r-- root/root usr/include/firefox/nsICacheStorage.h +-rw-r--r-- root/root usr/include/firefox/nsICacheStorageService.h +-rw-r--r-- root/root usr/include/firefox/nsICacheStorageVisitor.h +-rw-r--r-- root/root usr/include/firefox/nsICacheTesting.h +-rw-r--r-- root/root usr/include/firefox/nsICacheVisitor.h +-rw-r--r-- root/root usr/include/firefox/nsICachingChannel.h +-rw-r--r-- root/root usr/include/firefox/nsICancelable.h +-rw-r--r-- root/root usr/include/firefox/nsICancelableRunnable.h +-rw-r--r-- root/root usr/include/firefox/nsICanvasRenderingContextInternal.h +-rw-r--r-- root/root usr/include/firefox/nsICaptivePortalDetector.h +-rw-r--r-- root/root usr/include/firefox/nsICaptivePortalService.h +-rw-r--r-- root/root usr/include/firefox/nsICaseConversion.h +-rw-r--r-- root/root usr/include/firefox/nsICategoryManager.h +-rw-r--r-- root/root usr/include/firefox/nsICertBlocklist.h +-rw-r--r-- root/root usr/include/firefox/nsICertOverrideService.h +-rw-r--r-- root/root usr/include/firefox/nsICertTree.h +-rw-r--r-- root/root usr/include/firefox/nsICertificateDialogs.h +-rw-r--r-- root/root usr/include/firefox/nsIChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIChannelEventSink.h +-rw-r--r-- root/root usr/include/firefox/nsIChannelWithDivertableParentListener.h +-rw-r--r-- root/root usr/include/firefox/nsICharsetDetectionObserver.h +-rw-r--r-- root/root usr/include/firefox/nsICharsetDetector.h +-rw-r--r-- root/root usr/include/firefox/nsIChildChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIChromeRegistry.h +-rw-r--r-- root/root usr/include/firefox/nsIClassInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIClassInfoImpl.h +-rw-r--r-- root/root usr/include/firefox/nsIClassOfService.h +-rw-r--r-- root/root usr/include/firefox/nsIClientAuthDialogs.h +-rw-r--r-- root/root usr/include/firefox/nsIClipboard.h +-rw-r--r-- root/root usr/include/firefox/nsIClipboardCommands.h +-rw-r--r-- root/root usr/include/firefox/nsIClipboardDragDropHookList.h +-rw-r--r-- root/root usr/include/firefox/nsIClipboardDragDropHooks.h +-rw-r--r-- root/root usr/include/firefox/nsIClipboardHelper.h +-rw-r--r-- root/root usr/include/firefox/nsIClipboardOwner.h +-rw-r--r-- root/root usr/include/firefox/nsICloneableInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsICollation.h +-rw-r--r-- root/root usr/include/firefox/nsICollection.h +-rw-r--r-- root/root usr/include/firefox/nsIColorPicker.h +-rw-r--r-- root/root usr/include/firefox/nsIComboboxControlFrame.h +-rw-r--r-- root/root usr/include/firefox/nsICommandHandler.h +-rw-r--r-- root/root usr/include/firefox/nsICommandLine.h +-rw-r--r-- root/root usr/include/firefox/nsICommandLineHandler.h +-rw-r--r-- root/root usr/include/firefox/nsICommandLineRunner.h +-rw-r--r-- root/root usr/include/firefox/nsICommandLineValidator.h +-rw-r--r-- root/root usr/include/firefox/nsICommandManager.h +-rw-r--r-- root/root usr/include/firefox/nsICommandParams.h +-rw-r--r-- root/root usr/include/firefox/nsIComponentManager.h +-rw-r--r-- root/root usr/include/firefox/nsIComponentRegistrar.h +-rw-r--r-- root/root usr/include/firefox/nsICompressConvStats.h +-rw-r--r-- root/root usr/include/firefox/nsIConsoleAPIStorage.h +-rw-r--r-- root/root usr/include/firefox/nsIConsoleListener.h +-rw-r--r-- root/root usr/include/firefox/nsIConsoleMessage.h +-rw-r--r-- root/root usr/include/firefox/nsIConsoleReportCollector.h +-rw-r--r-- root/root usr/include/firefox/nsIConsoleService.h +-rw-r--r-- root/root usr/include/firefox/nsIConstraintValidation.h +-rw-r--r-- root/root usr/include/firefox/nsIContainerBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsIContent.h +-rw-r--r-- root/root usr/include/firefox/nsIContentDispatchChooser.h +-rw-r--r-- root/root usr/include/firefox/nsIContentFilter.h +-rw-r--r-- root/root usr/include/firefox/nsIContentHandle.h +-rw-r--r-- root/root usr/include/firefox/nsIContentHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIContentInlines.h +-rw-r--r-- root/root usr/include/firefox/nsIContentIterator.h +-rw-r--r-- root/root usr/include/firefox/nsIContentPermissionPrompt.h +-rw-r--r-- root/root usr/include/firefox/nsIContentPolicy.h +-rw-r--r-- root/root usr/include/firefox/nsIContentPolicyBase.h +-rw-r--r-- root/root usr/include/firefox/nsIContentPrefService.h +-rw-r--r-- root/root usr/include/firefox/nsIContentPrefService2.h +-rw-r--r-- root/root usr/include/firefox/nsIContentSecurityManager.h +-rw-r--r-- root/root usr/include/firefox/nsIContentSecurityPolicy.h +-rw-r--r-- root/root usr/include/firefox/nsIContentSerializer.h +-rw-r--r-- root/root usr/include/firefox/nsIContentSignatureVerifier.h +-rw-r--r-- root/root usr/include/firefox/nsIContentSink.h +-rw-r--r-- root/root usr/include/firefox/nsIContentSniffer.h +-rw-r--r-- root/root usr/include/firefox/nsIContentURIGrouper.h +-rw-r--r-- root/root usr/include/firefox/nsIContentViewer.h +-rw-r--r-- root/root usr/include/firefox/nsIContentViewerContainer.h +-rw-r--r-- root/root usr/include/firefox/nsIContentViewerEdit.h +-rw-r--r-- root/root usr/include/firefox/nsIContentViewerFile.h +-rw-r--r-- root/root usr/include/firefox/nsIContextMenuListener.h +-rw-r--r-- root/root usr/include/firefox/nsIContextMenuListener2.h +-rw-r--r-- root/root usr/include/firefox/nsIController.h +-rw-r--r-- root/root usr/include/firefox/nsIControllerCommand.h +-rw-r--r-- root/root usr/include/firefox/nsIControllerCommandTable.h +-rw-r--r-- root/root usr/include/firefox/nsIControllerContext.h +-rw-r--r-- root/root usr/include/firefox/nsIControllers.h +-rw-r--r-- root/root usr/include/firefox/nsIConverterInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIConverterOutputStream.h +-rw-r--r-- root/root usr/include/firefox/nsICookie.h +-rw-r--r-- root/root usr/include/firefox/nsICookie2.h +-rw-r--r-- root/root usr/include/firefox/nsICookieAcceptDialog.h +-rw-r--r-- root/root usr/include/firefox/nsICookieManager.h +-rw-r--r-- root/root usr/include/firefox/nsICookieManager2.h +-rw-r--r-- root/root usr/include/firefox/nsICookiePermission.h +-rw-r--r-- root/root usr/include/firefox/nsICookiePromptService.h +-rw-r--r-- root/root usr/include/firefox/nsICookieService.h +-rw-r--r-- root/root usr/include/firefox/nsICryptoFIPSInfo.h +-rw-r--r-- root/root usr/include/firefox/nsICryptoHMAC.h +-rw-r--r-- root/root usr/include/firefox/nsICryptoHash.h +-rw-r--r-- root/root usr/include/firefox/nsICycleCollectorListener.h +-rw-r--r-- root/root usr/include/firefox/nsID.h +-rw-r--r-- root/root usr/include/firefox/nsIDNSListener.h +-rw-r--r-- root/root usr/include/firefox/nsIDNSRecord.h +-rw-r--r-- root/root usr/include/firefox/nsIDNSService.h +-rw-r--r-- root/root usr/include/firefox/nsIDNSServiceDiscovery.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMAnimationEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMAttr.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMBeforeUnloadEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMBlob.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCDATASection.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSConditionRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSCounterStyleRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSFontFaceRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSFontFeatureValuesRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSGroupingRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSImportRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSKeyframeRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSKeyframesRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSMediaRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSMozDocumentRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSPageRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSPrimitiveValue.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSRuleList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSStyleDeclaration.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSStyleRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSStyleSheet.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSSupportsRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSUnknownRule.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSValue.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCSSValueList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCanvasRenderingContext2D.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCharacterData.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMChromeWindow.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMClassInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMClientRect.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMClientRectList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMClipboardEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCommandEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMComment.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMConstructor.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCounter.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCrypto.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMCustomEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDOMCursor.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDOMException.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDOMImplementation.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDOMRequest.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDataChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDataContainerEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDataTransfer.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDocumentFragment.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDocumentType.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDocumentXBL.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMDragEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMEventListener.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMEventTarget.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMFileList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMFocusEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMFontFace.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMFontFaceList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMFormData.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMGeoGeolocation.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMGeoPosition.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMGeoPositionCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMGeoPositionCoords.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMGeoPositionError.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMGeoPositionErrorCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMGlobalPropertyInitializer.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLAnchorElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLAppletElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLAreaElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLBaseElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLBodyElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLButtonElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLCanvasElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLCollection.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLDirectoryElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLEmbedElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLFieldSetElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLFormElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLFrameElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLFrameSetElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLHRElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLHeadElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLHtmlElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLIFrameElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLImageElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLInputElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLLIElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLLabelElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLLinkElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLMapElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLMediaElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLMenuElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLMenuItemElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLMetaElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLOListElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLObjectElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLOptGroupElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLOptionElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLOptionsCollection.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLParagraphElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLPictureElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLPreElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLQuoteElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLScriptElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLSelectElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLSourceElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLStyleElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLTableCellElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLTextAreaElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHTMLUListElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMHistory.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMKeyEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMLocation.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMMediaList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMModalContentWindow.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMMouseEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMMouseScrollEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMMozBrowserFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMMozNamedAttrMap.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMMutationEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNSEditableElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNSEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNavigator.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNavigatorUserMedia.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNode.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNodeFilter.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNodeIterator.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNodeList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMNotifyPaintEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMOfflineResourceList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMPaintRequest.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMParser.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMProcessingInstruction.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMRange.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMRect.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMSVGElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMSVGLength.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMScreen.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMScrollAreaEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMSerializer.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMSimpleGestureEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMStorage.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMStorageManager.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMStyleSheet.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMStyleSheetList.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMText.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMTimeEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMTimeRanges.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMTransitionEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMTreeWalker.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMUIEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMValidityState.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMWakeLockListener.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMWebGLRenderingContext.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMWheelEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMWindow.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMWindowCollection.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMWindowUtils.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXMLDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXPathEvaluator.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXPathResult.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULButtonElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULCheckboxElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULCommandDispatcher.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULCommandEvent.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULContainerElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULControlElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULDescriptionElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULImageElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULLabelElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULLabeledControlEl.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULMenuListElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULMultSelectCntrlEl.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULPopupElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULRelatedElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULSelectCntrlEl.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULSelectCntrlItemEl.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULTextboxElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDOMXULTreeElement.h +-rw-r--r-- root/root usr/include/firefox/nsIDTD.h +-rw-r--r-- root/root usr/include/firefox/nsIDashboard.h +-rw-r--r-- root/root usr/include/firefox/nsIDashboardEventNotifier.h +-rw-r--r-- root/root usr/include/firefox/nsIDataSignatureVerifier.h +-rw-r--r-- root/root usr/include/firefox/nsIDatePicker.h +-rw-r--r-- root/root usr/include/firefox/nsIDateTimeFormat.h +-rw-r--r-- root/root usr/include/firefox/nsIDateTimeInputArea.h +-rw-r--r-- root/root usr/include/firefox/nsIDebug2.h +-rw-r--r-- root/root usr/include/firefox/nsIDeprecationWarner.h +-rw-r--r-- root/root usr/include/firefox/nsIDeviceContextSpec.h +-rw-r--r-- root/root usr/include/firefox/nsIDeviceSensors.h +-rw-r--r-- root/root usr/include/firefox/nsIDialogParamBlock.h +-rw-r--r-- root/root usr/include/firefox/nsIDirIndex.h +-rw-r--r-- root/root usr/include/firefox/nsIDirIndexListener.h +-rw-r--r-- root/root usr/include/firefox/nsIDirectoryEnumerator.h +-rw-r--r-- root/root usr/include/firefox/nsIDirectoryService.h +-rw-r--r-- root/root usr/include/firefox/nsIDiskSpaceWatcher.h +-rw-r--r-- root/root usr/include/firefox/nsIDisplayInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIDivertableChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIDocCharset.h +-rw-r--r-- root/root usr/include/firefox/nsIDocShell.h +-rw-r--r-- root/root usr/include/firefox/nsIDocShellLoadInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIDocShellTreeItem.h +-rw-r--r-- root/root usr/include/firefox/nsIDocShellTreeOwner.h +-rw-r--r-- root/root usr/include/firefox/nsIDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIDocumentActivity.h +-rw-r--r-- root/root usr/include/firefox/nsIDocumentEncoder.h +-rw-r--r-- root/root usr/include/firefox/nsIDocumentInlines.h +-rw-r--r-- root/root usr/include/firefox/nsIDocumentLoader.h +-rw-r--r-- root/root usr/include/firefox/nsIDocumentLoaderFactory.h +-rw-r--r-- root/root usr/include/firefox/nsIDocumentObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIDocumentStateListener.h +-rw-r--r-- root/root usr/include/firefox/nsIDocumentTransformer.h +-rw-r--r-- root/root usr/include/firefox/nsIDomainPolicy.h +-rw-r--r-- root/root usr/include/firefox/nsIDownload.h +-rw-r--r-- root/root usr/include/firefox/nsIDownloadHistory.h +-rw-r--r-- root/root usr/include/firefox/nsIDownloadManager.h +-rw-r--r-- root/root usr/include/firefox/nsIDownloadManagerUI.h +-rw-r--r-- root/root usr/include/firefox/nsIDownloadProgressListener.h +-rw-r--r-- root/root usr/include/firefox/nsIDownloader.h +-rw-r--r-- root/root usr/include/firefox/nsIDragService.h +-rw-r--r-- root/root usr/include/firefox/nsIDragSession.h +-rw-r--r-- root/root usr/include/firefox/nsIDroppedLinkHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIEditActionListener.h +-rw-r--r-- root/root usr/include/firefox/nsIEditRules.h +-rw-r--r-- root/root usr/include/firefox/nsIEditingSession.h +-rw-r--r-- root/root usr/include/firefox/nsIEditor.h +-rw-r--r-- root/root usr/include/firefox/nsIEditorIMESupport.h +-rw-r--r-- root/root usr/include/firefox/nsIEditorMailSupport.h +-rw-r--r-- root/root usr/include/firefox/nsIEditorObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIEditorSpellCheck.h +-rw-r--r-- root/root usr/include/firefox/nsIEditorStyleSheets.h +-rw-r--r-- root/root usr/include/firefox/nsIEditorUtils.h +-rw-r--r-- root/root usr/include/firefox/nsIEffectiveTLDService.h +-rw-r--r-- root/root usr/include/firefox/nsIEmbeddingSiteWindow.h +-rw-r--r-- root/root usr/include/firefox/nsIEncodedChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIEntityConverter.h +-rw-r--r-- root/root usr/include/firefox/nsIEnumerator.h +-rw-r--r-- root/root usr/include/firefox/nsIEnvironment.h +-rw-r--r-- root/root usr/include/firefox/nsIErrorService.h +-rw-r--r-- root/root usr/include/firefox/nsIEventListenerService.h +-rw-r--r-- root/root usr/include/firefox/nsIEventTarget.h +-rw-r--r-- root/root usr/include/firefox/nsIException.h +-rw-r--r-- root/root usr/include/firefox/nsIExpatSink.h +-rw-r--r-- root/root usr/include/firefox/nsIExtendedExpatSink.h +-rw-r--r-- root/root usr/include/firefox/nsIExternalHelperAppService.h +-rw-r--r-- root/root usr/include/firefox/nsIExternalProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIExternalProtocolService.h +-rw-r--r-- root/root usr/include/firefox/nsIExternalSharingAppService.h +-rw-r--r-- root/root usr/include/firefox/nsIExternalURLHandlerService.h +-rw-r--r-- root/root usr/include/firefox/nsIFTPChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIFTPChannelParentInternal.h +-rw-r--r-- root/root usr/include/firefox/nsIFactory.h +-rw-r--r-- root/root usr/include/firefox/nsIFaviconService.h +-rw-r--r-- root/root usr/include/firefox/nsIFeed.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedContainer.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedElementBase.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedEntry.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedGenerator.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedListener.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedPerson.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedProcessor.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedResult.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedResultService.h +-rw-r--r-- root/root usr/include/firefox/nsIFeedTextConstruct.h +-rw-r--r-- root/root usr/include/firefox/nsIFile.h +-rw-r--r-- root/root usr/include/firefox/nsIFileChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIFilePicker.h +-rw-r--r-- root/root usr/include/firefox/nsIFileProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIFileStreams.h +-rw-r--r-- root/root usr/include/firefox/nsIFileURL.h +-rw-r--r-- root/root usr/include/firefox/nsIFileView.h +-rw-r--r-- root/root usr/include/firefox/nsIFinalizationWitnessService.h +-rw-r--r-- root/root usr/include/firefox/nsIFind.h +-rw-r--r-- root/root usr/include/firefox/nsIFindService.h +-rw-r--r-- root/root usr/include/firefox/nsIFocusManager.h +-rw-r--r-- root/root usr/include/firefox/nsIFontEnumerator.h +-rw-r--r-- root/root usr/include/firefox/nsIForcePendingChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIForm.h +-rw-r--r-- root/root usr/include/firefox/nsIFormAutoComplete.h +-rw-r--r-- root/root usr/include/firefox/nsIFormAutofillContentService.h +-rw-r--r-- root/root usr/include/firefox/nsIFormControl.h +-rw-r--r-- root/root usr/include/firefox/nsIFormControlFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIFormFillController.h +-rw-r--r-- root/root usr/include/firefox/nsIFormHistory.h +-rw-r--r-- root/root usr/include/firefox/nsIFormPOSTActionChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIFormProcessor.h +-rw-r--r-- root/root usr/include/firefox/nsIFormSubmitObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIFormatConverter.h +-rw-r--r-- root/root usr/include/firefox/nsIFragmentContentSink.h +-rw-r--r-- root/root usr/include/firefox/nsIFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIFrameInlines.h +-rw-r--r-- root/root usr/include/firefox/nsIFrameLoader.h +-rw-r--r-- root/root usr/include/firefox/nsIFrameTraversal.h +-rw-r--r-- root/root usr/include/firefox/nsIFrameUtil.h +-rw-r--r-- root/root usr/include/firefox/nsIFxAccountsUIGlue.h +-rw-r--r-- root/root usr/include/firefox/nsIGConfService.h +-rw-r--r-- root/root usr/include/firefox/nsIGIOService.h +-rw-r--r-- root/root usr/include/firefox/nsIGNOMEShellService.h +-rw-r--r-- root/root usr/include/firefox/nsIGSettingsService.h +-rw-r--r-- root/root usr/include/firefox/nsIGZFileWriter.h +-rw-r--r-- root/root usr/include/firefox/nsIGenKeypairInfoDlg.h +-rw-r--r-- root/root usr/include/firefox/nsIGeolocationProvider.h +-rw-r--r-- root/root usr/include/firefox/nsIGfxInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIGfxInfoDebug.h +-rw-r--r-- root/root usr/include/firefox/nsIGlobalHistory2.h +-rw-r--r-- root/root usr/include/firefox/nsIGlobalObject.h +-rw-r--r-- root/root usr/include/firefox/nsIGridPart.h +-rw-r--r-- root/root usr/include/firefox/nsIGroupedSHistory.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLAbsPosEditor.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLCollection.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLContentSink.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLEditor.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLInlineTableEditor.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLMenu.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLObjectResizeListener.h +-rw-r--r-- root/root usr/include/firefox/nsIHTMLObjectResizer.h +-rw-r--r-- root/root usr/include/firefox/nsIHTTPHeaderListener.h +-rw-r--r-- root/root usr/include/firefox/nsIHTTPIndex.h +-rw-r--r-- root/root usr/include/firefox/nsIHandlerService.h +-rw-r--r-- root/root usr/include/firefox/nsIHangReport.h +-rw-r--r-- root/root usr/include/firefox/nsIHapticFeedback.h +-rw-r--r-- root/root usr/include/firefox/nsIHashable.h +-rw-r--r-- root/root usr/include/firefox/nsIHelperAppLauncherDialog.h +-rw-r--r-- root/root usr/include/firefox/nsIHstsPrimingCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpActivityObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpAuthManager.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpAuthenticableChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpAuthenticator.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpAuthenticatorCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpChannelAuthProvider.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpChannelChild.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpChannelInternal.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpEventSink.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpHeaderVisitor.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIHttpPushListener.h +-rw-r--r-- root/root usr/include/firefox/nsIID.h +-rw-r--r-- root/root usr/include/firefox/nsIIDNService.h +-rw-r--r-- root/root usr/include/firefox/nsIINIParser.h +-rw-r--r-- root/root usr/include/firefox/nsIIOService.h +-rw-r--r-- root/root usr/include/firefox/nsIIOService2.h +-rw-r--r-- root/root usr/include/firefox/nsIIOUtil.h +-rw-r--r-- root/root usr/include/firefox/nsIIPCBackgroundChildCreateCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIIPCSerializableInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIIPCSerializableURI.h +-rw-r--r-- root/root usr/include/firefox/nsIIconURI.h +-rw-r--r-- root/root usr/include/firefox/nsIIdentityCryptoService.h +-rw-r--r-- root/root usr/include/firefox/nsIIdleObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIIdlePeriod.h +-rw-r--r-- root/root usr/include/firefox/nsIIdleService.h +-rw-r--r-- root/root usr/include/firefox/nsIIdleServiceInternal.h +-rw-r--r-- root/root usr/include/firefox/nsIImageDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIImageLoadingContent.h +-rw-r--r-- root/root usr/include/firefox/nsIImageToPixbuf.h +-rw-r--r-- root/root usr/include/firefox/nsIIncrementalDownload.h +-rw-r--r-- root/root usr/include/firefox/nsIIncrementalRunnable.h +-rw-r--r-- root/root usr/include/firefox/nsIIncrementalStreamLoader.h +-rw-r--r-- root/root usr/include/firefox/nsIInlineSpellChecker.h +-rw-r--r-- root/root usr/include/firefox/nsIInputListAutoComplete.h +-rw-r--r-- root/root usr/include/firefox/nsIInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIInputStreamChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIInputStreamPump.h +-rw-r--r-- root/root usr/include/firefox/nsIInputStreamTee.h +-rw-r--r-- root/root usr/include/firefox/nsIInterfaceInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIInterfaceInfoManager.h +-rw-r--r-- root/root usr/include/firefox/nsIInterfaceRequestor.h +-rw-r--r-- root/root usr/include/firefox/nsIInterfaceRequestorUtils.h +-rw-r--r-- root/root usr/include/firefox/nsIJARChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIJARProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIJARURI.h +-rw-r--r-- root/root usr/include/firefox/nsIJSInspector.h +-rw-r--r-- root/root usr/include/firefox/nsIJSON.h +-rw-r--r-- root/root usr/include/firefox/nsIKeyEventInPluginCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIKeyModule.h +-rw-r--r-- root/root usr/include/firefox/nsIKeygenThread.h +-rw-r--r-- root/root usr/include/firefox/nsILanguageAtomService.h +-rw-r--r-- root/root usr/include/firefox/nsILayoutDebugger.h +-rw-r--r-- root/root usr/include/firefox/nsILayoutHistoryState.h +-rw-r--r-- root/root usr/include/firefox/nsILineBreaker.h +-rw-r--r-- root/root usr/include/firefox/nsILineInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsILineIterator.h +-rw-r--r-- root/root usr/include/firefox/nsILinkHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIListBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsIListControlFrame.h +-rw-r--r-- root/root usr/include/firefox/nsILoadContext.h +-rw-r--r-- root/root usr/include/firefox/nsILoadContextInfo.h +-rw-r--r-- root/root usr/include/firefox/nsILoadGroup.h +-rw-r--r-- root/root usr/include/firefox/nsILoadGroupChild.h +-rw-r--r-- root/root usr/include/firefox/nsILoadInfo.h +-rw-r--r-- root/root usr/include/firefox/nsILocalCertService.h +-rw-r--r-- root/root usr/include/firefox/nsILocalFile.h +-rw-r--r-- root/root usr/include/firefox/nsILocalFileWin.h +-rw-r--r-- root/root usr/include/firefox/nsILocalStore.h +-rw-r--r-- root/root usr/include/firefox/nsILocale.h +-rw-r--r-- root/root usr/include/firefox/nsILocaleService.h +-rw-r--r-- root/root usr/include/firefox/nsILoginInfo.h +-rw-r--r-- root/root usr/include/firefox/nsILoginManager.h +-rw-r--r-- root/root usr/include/firefox/nsILoginManagerCrypto.h +-rw-r--r-- root/root usr/include/firefox/nsILoginManagerPrompter.h +-rw-r--r-- root/root usr/include/firefox/nsILoginManagerStorage.h +-rw-r--r-- root/root usr/include/firefox/nsILoginMetaInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIMIMEHeaderParam.h +-rw-r--r-- root/root usr/include/firefox/nsIMIMEInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIMIMEInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIMIMEService.h +-rw-r--r-- root/root usr/include/firefox/nsIMathMLFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIMediaManager.h +-rw-r--r-- root/root usr/include/firefox/nsIMemory.h +-rw-r--r-- root/root usr/include/firefox/nsIMemoryInfoDumper.h +-rw-r--r-- root/root usr/include/firefox/nsIMemoryReporter.h +-rw-r--r-- root/root usr/include/firefox/nsIMenuBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsIMenuBuilder.h +-rw-r--r-- root/root usr/include/firefox/nsIMessageLoop.h +-rw-r--r-- root/root usr/include/firefox/nsIMessageManager.h +-rw-r--r-- root/root usr/include/firefox/nsIModule.h +-rw-r--r-- root/root usr/include/firefox/nsIMozBrowserFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIMozNavigatorNetwork.h +-rw-r--r-- root/root usr/include/firefox/nsIMozSAXXMLDeclarationHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIMultiPartChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIMultiplexInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIMutable.h +-rw-r--r-- root/root usr/include/firefox/nsIMutableArray.h +-rw-r--r-- root/root usr/include/firefox/nsIMutationObserver.h +-rw-r--r-- root/root usr/include/firefox/nsINIParser.h +-rw-r--r-- root/root usr/include/firefox/nsINSSErrorsService.h +-rw-r--r-- root/root usr/include/firefox/nsINSSU2FToken.h +-rw-r--r-- root/root usr/include/firefox/nsINSSVersion.h +-rw-r--r-- root/root usr/include/firefox/nsINativeAppSupport.h +-rw-r--r-- root/root usr/include/firefox/nsINativeFileWatcher.h +-rw-r--r-- root/root usr/include/firefox/nsINativeOSFileInternals.h +-rw-r--r-- root/root usr/include/firefox/nsINavBookmarksService.h +-rw-r--r-- root/root usr/include/firefox/nsINavHistoryService.h +-rw-r--r-- root/root usr/include/firefox/nsINestedURI.h +-rw-r--r-- root/root usr/include/firefox/nsINetAddr.h +-rw-r--r-- root/root usr/include/firefox/nsINetUtil.h +-rw-r--r-- root/root usr/include/firefox/nsINetworkInfoService.h +-rw-r--r-- root/root usr/include/firefox/nsINetworkInterceptController.h +-rw-r--r-- root/root usr/include/firefox/nsINetworkLinkService.h +-rw-r--r-- root/root usr/include/firefox/nsINetworkPredictor.h +-rw-r--r-- root/root usr/include/firefox/nsINetworkPredictorVerifier.h +-rw-r--r-- root/root usr/include/firefox/nsINetworkProperties.h +-rw-r--r-- root/root usr/include/firefox/nsINode.h +-rw-r--r-- root/root usr/include/firefox/nsINodeList.h +-rw-r--r-- root/root usr/include/firefox/nsINotificationStorage.h +-rw-r--r-- root/root usr/include/firefox/nsINullChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIOSFileConstantsService.h +-rw-r--r-- root/root usr/include/firefox/nsIObjectFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIObjectInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIObjectLoadingContent.h +-rw-r--r-- root/root usr/include/firefox/nsIObjectOutputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIObserverService.h +-rw-r--r-- root/root usr/include/firefox/nsIOfflineCacheUpdate.h +-rw-r--r-- root/root usr/include/firefox/nsIOutputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIPK11Token.h +-rw-r--r-- root/root usr/include/firefox/nsIPK11TokenDB.h +-rw-r--r-- root/root usr/include/firefox/nsIPKCS11.h +-rw-r--r-- root/root usr/include/firefox/nsIPKCS11Module.h +-rw-r--r-- root/root usr/include/firefox/nsIPKCS11ModuleDB.h +-rw-r--r-- root/root usr/include/firefox/nsIPKCS11Slot.h +-rw-r--r-- root/root usr/include/firefox/nsIPackageKitService.h +-rw-r--r-- root/root usr/include/firefox/nsIPageSequenceFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIParentChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIParentRedirectingChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIParentalControlsService.h +-rw-r--r-- root/root usr/include/firefox/nsIParser.h +-rw-r--r-- root/root usr/include/firefox/nsIParserService.h +-rw-r--r-- root/root usr/include/firefox/nsIParserUtils.h +-rw-r--r-- root/root usr/include/firefox/nsIPartialSHistory.h +-rw-r--r-- root/root usr/include/firefox/nsIPartialSHistoryListener.h +-rw-r--r-- root/root usr/include/firefox/nsIPercentBSizeObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIPerformanceStats.h +-rw-r--r-- root/root usr/include/firefox/nsIPermission.h +-rw-r--r-- root/root usr/include/firefox/nsIPermissionManager.h +-rw-r--r-- root/root usr/include/firefox/nsIPermissionPromptService.h +-rw-r--r-- root/root usr/include/firefox/nsIPersistentProperties2.h +-rw-r--r-- root/root usr/include/firefox/nsIPhonetic.h +-rw-r--r-- root/root usr/include/firefox/nsIPipe.h +-rw-r--r-- root/root usr/include/firefox/nsIPlaintextEditor.h +-rw-r--r-- root/root usr/include/firefox/nsIPlatformCharset.h +-rw-r--r-- root/root usr/include/firefox/nsIPlatformInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIPluginDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIPluginHost.h +-rw-r--r-- root/root usr/include/firefox/nsIPluginInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIPluginInstanceOwner.h +-rw-r--r-- root/root usr/include/firefox/nsIPluginTag.h +-rw-r--r-- root/root usr/include/firefox/nsIPluginWidget.h +-rw-r--r-- root/root usr/include/firefox/nsIPopupWindowManager.h +-rw-r--r-- root/root usr/include/firefox/nsIPowerManagerService.h +-rw-r--r-- root/root usr/include/firefox/nsIPrefBranch.h +-rw-r--r-- root/root usr/include/firefox/nsIPrefBranch2.h +-rw-r--r-- root/root usr/include/firefox/nsIPrefBranchInternal.h +-rw-r--r-- root/root usr/include/firefox/nsIPrefLocalizedString.h +-rw-r--r-- root/root usr/include/firefox/nsIPrefService.h +-rw-r--r-- root/root usr/include/firefox/nsIPrefetchService.h +-rw-r--r-- root/root usr/include/firefox/nsIPresShell.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationControlChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationControlService.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationDevice.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationDeviceManager.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationDevicePrompt.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationDeviceProvider.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationListener.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationLocalDevice.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationRequestUIGlue.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationService.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationSessionRequest.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationSessionTransport.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationSessionTransportBuilder.h +-rw-r--r-- root/root usr/include/firefox/nsIPresentationTerminateRequest.h +-rw-r--r-- root/root usr/include/firefox/nsIPrincipal.h +-rw-r--r-- root/root usr/include/firefox/nsIPrintDialogService.h +-rw-r--r-- root/root usr/include/firefox/nsIPrintProgress.h +-rw-r--r-- root/root usr/include/firefox/nsIPrintProgressParams.h +-rw-r--r-- root/root usr/include/firefox/nsIPrintSession.h +-rw-r--r-- root/root usr/include/firefox/nsIPrintSettings.h +-rw-r--r-- root/root usr/include/firefox/nsIPrintSettingsService.h +-rw-r--r-- root/root usr/include/firefox/nsIPrintStatusFeedback.h +-rw-r--r-- root/root usr/include/firefox/nsIPrinterEnumerator.h +-rw-r--r-- root/root usr/include/firefox/nsIPrintingPromptService.h +-rw-r--r-- root/root usr/include/firefox/nsIPrivacyTransitionObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIPrivateBrowsingChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIPrivateBrowsingTrackingProtectionWhitelist.h +-rw-r--r-- root/root usr/include/firefox/nsIProcess.h +-rw-r--r-- root/root usr/include/firefox/nsIProfileMigrator.h +-rw-r--r-- root/root usr/include/firefox/nsIProfileUnlocker.h +-rw-r--r-- root/root usr/include/firefox/nsIProgrammingLanguage.h +-rw-r--r-- root/root usr/include/firefox/nsIProgressEventSink.h +-rw-r--r-- root/root usr/include/firefox/nsIPrompt.h +-rw-r--r-- root/root usr/include/firefox/nsIPromptFactory.h +-rw-r--r-- root/root usr/include/firefox/nsIPromptService.h +-rw-r--r-- root/root usr/include/firefox/nsIPromptService2.h +-rw-r--r-- root/root usr/include/firefox/nsIProperties.h +-rw-r--r-- root/root usr/include/firefox/nsIProperty.h +-rw-r--r-- root/root usr/include/firefox/nsIPropertyBag.h +-rw-r--r-- root/root usr/include/firefox/nsIPropertyBag2.h +-rw-r--r-- root/root usr/include/firefox/nsIProtectedAuthThread.h +-rw-r--r-- root/root usr/include/firefox/nsIProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIProtocolProxyCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIProtocolProxyFilter.h +-rw-r--r-- root/root usr/include/firefox/nsIProtocolProxyService.h +-rw-r--r-- root/root usr/include/firefox/nsIProtocolProxyService2.h +-rw-r--r-- root/root usr/include/firefox/nsIProxiedChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIProxiedProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIProxyInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIPushErrorReporter.h +-rw-r--r-- root/root usr/include/firefox/nsIPushNotifier.h +-rw-r--r-- root/root usr/include/firefox/nsIPushService.h +-rw-r--r-- root/root usr/include/firefox/nsIQueryContentEventResult.h +-rw-r--r-- root/root usr/include/firefox/nsIQuotaCallbacks.h +-rw-r--r-- root/root usr/include/firefox/nsIQuotaManagerService.h +-rw-r--r-- root/root usr/include/firefox/nsIQuotaRequests.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFCompositeDataSource.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFContainer.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFContainerUtils.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFContentSink.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFDataSource.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFDelegateFactory.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFInMemoryDataSource.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFInferDataSource.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFLiteral.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFNode.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFPropagatableDataSource.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFPurgeableDataSource.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFRemoteDataSource.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFResource.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFService.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFXMLParser.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFXMLSerializer.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFXMLSink.h +-rw-r--r-- root/root usr/include/firefox/nsIRDFXMLSource.h +-rw-r--r-- root/root usr/include/firefox/nsIRadioGroupContainer.h +-rw-r--r-- root/root usr/include/firefox/nsIRadioVisitor.h +-rw-r--r-- root/root usr/include/firefox/nsIRandomGenerator.h +-rw-r--r-- root/root usr/include/firefox/nsIReadConfig.h +-rw-r--r-- root/root usr/include/firefox/nsIRecoveryService.h +-rw-r--r-- root/root usr/include/firefox/nsIRedirectChannelRegistrar.h +-rw-r--r-- root/root usr/include/firefox/nsIRedirectResultListener.h +-rw-r--r-- root/root usr/include/firefox/nsIReflowCallback.h +-rw-r--r-- root/root usr/include/firefox/nsIReflowObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIRefreshURI.h +-rw-r--r-- root/root usr/include/firefox/nsIRelativeFilePref.h +-rw-r--r-- root/root usr/include/firefox/nsIRemoteBrowser.h +-rw-r--r-- root/root usr/include/firefox/nsIRemoteService.h +-rw-r--r-- root/root usr/include/firefox/nsIRemoteWindowContext.h +-rw-r--r-- root/root usr/include/firefox/nsIRequest.h +-rw-r--r-- root/root usr/include/firefox/nsIRequestContext.h +-rw-r--r-- root/root usr/include/firefox/nsIRequestObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIRequestObserverProxy.h +-rw-r--r-- root/root usr/include/firefox/nsIResProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIResumableChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIRollupListener.h +-rw-r--r-- root/root usr/include/firefox/nsIRunnable.h +-rw-r--r-- root/root usr/include/firefox/nsISAXAttributes.h +-rw-r--r-- root/root usr/include/firefox/nsISAXContentHandler.h +-rw-r--r-- root/root usr/include/firefox/nsISAXDTDHandler.h +-rw-r--r-- root/root usr/include/firefox/nsISAXErrorHandler.h +-rw-r--r-- root/root usr/include/firefox/nsISAXLexicalHandler.h +-rw-r--r-- root/root usr/include/firefox/nsISAXLocator.h +-rw-r--r-- root/root usr/include/firefox/nsISAXMutableAttributes.h +-rw-r--r-- root/root usr/include/firefox/nsISAXXMLFilter.h +-rw-r--r-- root/root usr/include/firefox/nsISAXXMLReader.h +-rw-r--r-- root/root usr/include/firefox/nsISHContainer.h +-rw-r--r-- root/root usr/include/firefox/nsISHEntry.h +-rw-r--r-- root/root usr/include/firefox/nsISHTransaction.h +-rw-r--r-- root/root usr/include/firefox/nsISHistory.h +-rw-r--r-- root/root usr/include/firefox/nsISHistoryInternal.h +-rw-r--r-- root/root usr/include/firefox/nsISHistoryListener.h +-rw-r--r-- root/root usr/include/firefox/nsISMILAttr.h +-rw-r--r-- root/root usr/include/firefox/nsISMILType.h +-rw-r--r-- root/root usr/include/firefox/nsISOCKSSocketInfo.h +-rw-r--r-- root/root usr/include/firefox/nsISSLSocketControl.h +-rw-r--r-- root/root usr/include/firefox/nsISSLStatus.h +-rw-r--r-- root/root usr/include/firefox/nsISSLStatusProvider.h +-rw-r--r-- root/root usr/include/firefox/nsISafeOutputStream.h +-rw-r--r-- root/root usr/include/firefox/nsISaveAsCharset.h +-rw-r--r-- root/root usr/include/firefox/nsIScreen.h +-rw-r--r-- root/root usr/include/firefox/nsIScreenManager.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptContext.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptElement.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptError.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptGlobalObject.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptLoaderObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptNameSpaceManager.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptObjectPrincipal.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptSecurityManager.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptTimeoutHandler.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptableBase64Encoder.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptableDateFormat.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptableInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptableRegion.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptableUConv.h +-rw-r--r-- root/root usr/include/firefox/nsIScriptableUnescapeHTML.h +-rw-r--r-- root/root usr/include/firefox/nsIScrollBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsIScrollObserver.h +-rw-r--r-- root/root usr/include/firefox/nsIScrollPositionListener.h +-rw-r--r-- root/root usr/include/firefox/nsIScrollable.h +-rw-r--r-- root/root usr/include/firefox/nsIScrollableFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIScrollbarMediator.h +-rw-r--r-- root/root usr/include/firefox/nsISecCheckWrapChannel.h +-rw-r--r-- root/root usr/include/firefox/nsISecretDecoderRing.h +-rw-r--r-- root/root usr/include/firefox/nsISecureBrowserUI.h +-rw-r--r-- root/root usr/include/firefox/nsISecurityConsoleMessage.h +-rw-r--r-- root/root usr/include/firefox/nsISecurityEventSink.h +-rw-r--r-- root/root usr/include/firefox/nsISecurityInfoProvider.h +-rw-r--r-- root/root usr/include/firefox/nsISecurityReporter.h +-rw-r--r-- root/root usr/include/firefox/nsISecurityUITelemetry.h +-rw-r--r-- root/root usr/include/firefox/nsISeekableStream.h +-rw-r--r-- root/root usr/include/firefox/nsISelectControlFrame.h +-rw-r--r-- root/root usr/include/firefox/nsISelection.h +-rw-r--r-- root/root usr/include/firefox/nsISelectionController.h +-rw-r--r-- root/root usr/include/firefox/nsISelectionDisplay.h +-rw-r--r-- root/root usr/include/firefox/nsISelectionListener.h +-rw-r--r-- root/root usr/include/firefox/nsISelectionPrivate.h +-rw-r--r-- root/root usr/include/firefox/nsISemanticUnitScanner.h +-rw-r--r-- root/root usr/include/firefox/nsISensitiveInfoHiddenURI.h +-rw-r--r-- root/root usr/include/firefox/nsISerializable.h +-rw-r--r-- root/root usr/include/firefox/nsISerializationHelper.h +-rw-r--r-- root/root usr/include/firefox/nsIServerSocket.h +-rw-r--r-- root/root usr/include/firefox/nsIServiceManager.h +-rw-r--r-- root/root usr/include/firefox/nsIServiceWorkerManager.h +-rw-r--r-- root/root usr/include/firefox/nsISessionStartup.h +-rw-r--r-- root/root usr/include/firefox/nsISessionStore.h +-rw-r--r-- root/root usr/include/firefox/nsISettingsService.h +-rw-r--r-- root/root usr/include/firefox/nsIShellService.h +-rw-r--r-- root/root usr/include/firefox/nsISimpleContentPolicy.h +-rw-r--r-- root/root usr/include/firefox/nsISimpleEnumerator.h +-rw-r--r-- root/root usr/include/firefox/nsISimpleStreamListener.h +-rw-r--r-- root/root usr/include/firefox/nsISiteSecurityService.h +-rw-r--r-- root/root usr/include/firefox/nsISiteSpecificUserAgent.h +-rw-r--r-- root/root usr/include/firefox/nsISizeOf.h +-rw-r--r-- root/root usr/include/firefox/nsISliderListener.h +-rw-r--r-- root/root usr/include/firefox/nsISlowScriptDebug.h +-rw-r--r-- root/root usr/include/firefox/nsISocketFilter.h +-rw-r--r-- root/root usr/include/firefox/nsISocketProvider.h +-rw-r--r-- root/root usr/include/firefox/nsISocketProviderService.h +-rw-r--r-- root/root usr/include/firefox/nsISocketTransport.h +-rw-r--r-- root/root usr/include/firefox/nsISocketTransportService.h +-rw-r--r-- root/root usr/include/firefox/nsISound.h +-rw-r--r-- root/root usr/include/firefox/nsISpeculativeConnect.h +-rw-r--r-- root/root usr/include/firefox/nsISpeechRecognitionService.h +-rw-r--r-- root/root usr/include/firefox/nsISpeechService.h +-rw-r--r-- root/root usr/include/firefox/nsISpellChecker.h +-rw-r--r-- root/root usr/include/firefox/nsIStandardURL.h +-rw-r--r-- root/root usr/include/firefox/nsIStartupCache.h +-rw-r--r-- root/root usr/include/firefox/nsIStatefulFrame.h +-rw-r--r-- root/root usr/include/firefox/nsIStatusReporter.h +-rw-r--r-- root/root usr/include/firefox/nsIStorageStream.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamBufferAccess.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamConverter.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamConverterService.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamListener.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamListenerTee.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamLoader.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamTransportService.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamingProtocolController.h +-rw-r--r-- root/root usr/include/firefox/nsIStreamingProtocolService.h +-rw-r--r-- root/root usr/include/firefox/nsIStringBundle.h +-rw-r--r-- root/root usr/include/firefox/nsIStringBundleOverride.h +-rw-r--r-- root/root usr/include/firefox/nsIStringCharsetDetector.h +-rw-r--r-- root/root usr/include/firefox/nsIStringEnumerator.h +-rw-r--r-- root/root usr/include/firefox/nsIStringStream.h +-rw-r--r-- root/root usr/include/firefox/nsIStructuredCloneContainer.h +-rw-r--r-- root/root usr/include/firefox/nsIStyleRule.h +-rw-r--r-- root/root usr/include/firefox/nsIStyleRuleProcessor.h +-rw-r--r-- root/root usr/include/firefox/nsIStyleSheetLinkingElement.h +-rw-r--r-- root/root usr/include/firefox/nsIStyleSheetService.h +-rw-r--r-- root/root usr/include/firefox/nsISubstitutingProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsISupports.h +-rw-r--r-- root/root usr/include/firefox/nsISupportsArray.h +-rw-r--r-- root/root usr/include/firefox/nsISupportsBase.h +-rw-r--r-- root/root usr/include/firefox/nsISupportsImpl.h +-rw-r--r-- root/root usr/include/firefox/nsISupportsIterators.h +-rw-r--r-- root/root usr/include/firefox/nsISupportsPrimitives.h +-rw-r--r-- root/root usr/include/firefox/nsISupportsPriority.h +-rw-r--r-- root/root usr/include/firefox/nsISupportsUtils.h +-rw-r--r-- root/root usr/include/firefox/nsISyncJPAKE.h +-rw-r--r-- root/root usr/include/firefox/nsISyncStreamListener.h +-rw-r--r-- root/root usr/include/firefox/nsISynthVoiceRegistry.h +-rw-r--r-- root/root usr/include/firefox/nsISystemProxySettings.h +-rw-r--r-- root/root usr/include/firefox/nsISystemUpdateProvider.h +-rw-r--r-- root/root usr/include/firefox/nsITCPSocketCallback.h +-rw-r--r-- root/root usr/include/firefox/nsITLSServerSocket.h +-rw-r--r-- root/root usr/include/firefox/nsITXTToHTMLConv.h +-rw-r--r-- root/root usr/include/firefox/nsITabChild.h +-rw-r--r-- root/root usr/include/firefox/nsITabParent.h +-rw-r--r-- root/root usr/include/firefox/nsITabSource.h +-rw-r--r-- root/root usr/include/firefox/nsITableCellLayout.h +-rw-r--r-- root/root usr/include/firefox/nsITableEditor.h +-rw-r--r-- root/root usr/include/firefox/nsITaggingService.h +-rw-r--r-- root/root usr/include/firefox/nsITelemetry.h +-rw-r--r-- root/root usr/include/firefox/nsITextControlElement.h +-rw-r--r-- root/root usr/include/firefox/nsITextControlFrame.h +-rw-r--r-- root/root usr/include/firefox/nsITextInputProcessor.h +-rw-r--r-- root/root usr/include/firefox/nsITextInputProcessorCallback.h +-rw-r--r-- root/root usr/include/firefox/nsITextScroll.h +-rw-r--r-- root/root usr/include/firefox/nsITextService.h +-rw-r--r-- root/root usr/include/firefox/nsITextServicesDocument.h +-rw-r--r-- root/root usr/include/firefox/nsITextServicesFilter.h +-rw-r--r-- root/root usr/include/firefox/nsITextToSubURI.h +-rw-r--r-- root/root usr/include/firefox/nsITheme.h +-rw-r--r-- root/root usr/include/firefox/nsIThread.h +-rw-r--r-- root/root usr/include/firefox/nsIThreadInternal.h +-rw-r--r-- root/root usr/include/firefox/nsIThreadManager.h +-rw-r--r-- root/root usr/include/firefox/nsIThreadPool.h +-rw-r--r-- root/root usr/include/firefox/nsIThreadRetargetableRequest.h +-rw-r--r-- root/root usr/include/firefox/nsIThreadRetargetableStreamListener.h +-rw-r--r-- root/root usr/include/firefox/nsIThrottledInputChannel.h +-rw-r--r-- root/root usr/include/firefox/nsITimeService.h +-rw-r--r-- root/root usr/include/firefox/nsITimedChannel.h +-rw-r--r-- root/root usr/include/firefox/nsITimeoutHandler.h +-rw-r--r-- root/root usr/include/firefox/nsITimer.h +-rw-r--r-- root/root usr/include/firefox/nsITokenDialogs.h +-rw-r--r-- root/root usr/include/firefox/nsITokenPasswordDialogs.h +-rw-r--r-- root/root usr/include/firefox/nsITokenizer.h +-rw-r--r-- root/root usr/include/firefox/nsIToolkitChromeRegistry.h +-rw-r--r-- root/root usr/include/firefox/nsIToolkitProfile.h +-rw-r--r-- root/root usr/include/firefox/nsIToolkitProfileService.h +-rw-r--r-- root/root usr/include/firefox/nsITooltipListener.h +-rw-r--r-- root/root usr/include/firefox/nsITooltipTextProvider.h +-rw-r--r-- root/root usr/include/firefox/nsITraceableChannel.h +-rw-r--r-- root/root usr/include/firefox/nsITransaction.h +-rw-r--r-- root/root usr/include/firefox/nsITransactionList.h +-rw-r--r-- root/root usr/include/firefox/nsITransactionListener.h +-rw-r--r-- root/root usr/include/firefox/nsITransactionManager.h +-rw-r--r-- root/root usr/include/firefox/nsITransfer.h +-rw-r--r-- root/root usr/include/firefox/nsITransferable.h +-rw-r--r-- root/root usr/include/firefox/nsITransport.h +-rw-r--r-- root/root usr/include/firefox/nsITransportProvider.h +-rw-r--r-- root/root usr/include/firefox/nsITransportSecurityInfo.h +-rw-r--r-- root/root usr/include/firefox/nsITreeBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsITreeColumns.h +-rw-r--r-- root/root usr/include/firefox/nsITreeContentView.h +-rw-r--r-- root/root usr/include/firefox/nsITreeSelection.h +-rw-r--r-- root/root usr/include/firefox/nsITreeView.h +-rw-r--r-- root/root usr/include/firefox/nsITypeAheadFind.h +-rw-r--r-- root/root usr/include/firefox/nsIU2FToken.h +-rw-r--r-- root/root usr/include/firefox/nsIUDPSocket.h +-rw-r--r-- root/root usr/include/firefox/nsIUDPSocketChild.h +-rw-r--r-- root/root usr/include/firefox/nsIUGenCategory.h +-rw-r--r-- root/root usr/include/firefox/nsIURI.h +-rw-r--r-- root/root usr/include/firefox/nsIURIClassifier.h +-rw-r--r-- root/root usr/include/firefox/nsIURIContentListener.h +-rw-r--r-- root/root usr/include/firefox/nsIURIFixup.h +-rw-r--r-- root/root usr/include/firefox/nsIURILoader.h +-rw-r--r-- root/root usr/include/firefox/nsIURIRefObject.h +-rw-r--r-- root/root usr/include/firefox/nsIURIWithBlobImpl.h +-rw-r--r-- root/root usr/include/firefox/nsIURIWithPrincipal.h +-rw-r--r-- root/root usr/include/firefox/nsIURIWithQuery.h +-rw-r--r-- root/root usr/include/firefox/nsIURL.h +-rw-r--r-- root/root usr/include/firefox/nsIURLFormatter.h +-rw-r--r-- root/root usr/include/firefox/nsIURLParser.h +-rw-r--r-- root/root usr/include/firefox/nsIUTF8ConverterService.h +-rw-r--r-- root/root usr/include/firefox/nsIUUIDGenerator.h +-rw-r--r-- root/root usr/include/firefox/nsIUnicharInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIUnicharLineInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIUnicharOutputStream.h +-rw-r--r-- root/root usr/include/firefox/nsIUnicharStreamLoader.h +-rw-r--r-- root/root usr/include/firefox/nsIUnicodeDecoder.h +-rw-r--r-- root/root usr/include/firefox/nsIUnicodeEncoder.h +-rw-r--r-- root/root usr/include/firefox/nsIUnicodeNormalizer.h +-rw-r--r-- root/root usr/include/firefox/nsIUpdateTimerManager.h +-rw-r--r-- root/root usr/include/firefox/nsIUploadChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIUploadChannel2.h +-rw-r--r-- root/root usr/include/firefox/nsIUrlClassifierDBService.h +-rw-r--r-- root/root usr/include/firefox/nsIUrlClassifierHashCompleter.h +-rw-r--r-- root/root usr/include/firefox/nsIUrlClassifierPrefixSet.h +-rw-r--r-- root/root usr/include/firefox/nsIUrlClassifierStreamUpdater.h +-rw-r--r-- root/root usr/include/firefox/nsIUrlClassifierUtils.h +-rw-r--r-- root/root usr/include/firefox/nsIUrlListManager.h +-rw-r--r-- root/root usr/include/firefox/nsIUserInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIVariant.h +-rw-r--r-- root/root usr/include/firefox/nsIVersionComparator.h +-rw-r--r-- root/root usr/include/firefox/nsIViewSourceChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIWeakCryptoOverride.h +-rw-r--r-- root/root usr/include/firefox/nsIWeakReference.h +-rw-r--r-- root/root usr/include/firefox/nsIWeakReferenceUtils.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowser.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserChrome.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserChrome2.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserChrome3.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserChromeFocus.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserFind.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserFocus.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserPersist.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserPersistDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserPersistable.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserPrint.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserSetup.h +-rw-r--r-- root/root usr/include/firefox/nsIWebBrowserStream.h +-rw-r--r-- root/root usr/include/firefox/nsIWebContentConverterRegistrar.h +-rw-r--r-- root/root usr/include/firefox/nsIWebContentHandlerRegistrar.h +-rw-r--r-- root/root usr/include/firefox/nsIWebNavigation.h +-rw-r--r-- root/root usr/include/firefox/nsIWebNavigationInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIWebPageDescriptor.h +-rw-r--r-- root/root usr/include/firefox/nsIWebProgress.h +-rw-r--r-- root/root usr/include/firefox/nsIWebProgressListener.h +-rw-r--r-- root/root usr/include/firefox/nsIWebProgressListener2.h +-rw-r--r-- root/root usr/include/firefox/nsIWebShellServices.h +-rw-r--r-- root/root usr/include/firefox/nsIWebSocketChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIWebSocketEventService.h +-rw-r--r-- root/root usr/include/firefox/nsIWebSocketListener.h +-rw-r--r-- root/root usr/include/firefox/nsIWebVTTListener.h +-rw-r--r-- root/root usr/include/firefox/nsIWebVTTParserWrapper.h +-rw-r--r-- root/root usr/include/firefox/nsIWellKnownOpportunisticUtils.h +-rw-r--r-- root/root usr/include/firefox/nsIWidget.h +-rw-r--r-- root/root usr/include/firefox/nsIWidgetListener.h +-rw-r--r-- root/root usr/include/firefox/nsIWindowCreator.h +-rw-r--r-- root/root usr/include/firefox/nsIWindowCreator2.h +-rw-r--r-- root/root usr/include/firefox/nsIWindowDataSource.h +-rw-r--r-- root/root usr/include/firefox/nsIWindowMediator.h +-rw-r--r-- root/root usr/include/firefox/nsIWindowMediatorListener.h +-rw-r--r-- root/root usr/include/firefox/nsIWindowProvider.h +-rw-r--r-- root/root usr/include/firefox/nsIWindowWatcher.h +-rw-r--r-- root/root usr/include/firefox/nsIWindowlessBrowser.h +-rw-r--r-- root/root usr/include/firefox/nsIWordBreaker.h +-rw-r--r-- root/root usr/include/firefox/nsIWorkerDebugger.h +-rw-r--r-- root/root usr/include/firefox/nsIWorkerDebuggerManager.h +-rw-r--r-- root/root usr/include/firefox/nsIWritablePropertyBag.h +-rw-r--r-- root/root usr/include/firefox/nsIWritablePropertyBag2.h +-rw-r--r-- root/root usr/include/firefox/nsIWyciwygChannel.h +-rw-r--r-- root/root usr/include/firefox/nsIX509Cert.h +-rw-r--r-- root/root usr/include/firefox/nsIX509CertDB.h +-rw-r--r-- root/root usr/include/firefox/nsIX509CertList.h +-rw-r--r-- root/root usr/include/firefox/nsIX509CertValidity.h +-rw-r--r-- root/root usr/include/firefox/nsIXBLAccessible.h +-rw-r--r-- root/root usr/include/firefox/nsIXMLContentSink.h +-rw-r--r-- root/root usr/include/firefox/nsIXMLHttpRequest.h +-rw-r--r-- root/root usr/include/firefox/nsIXPCScriptable.h +-rw-r--r-- root/root usr/include/firefox/nsIXPConnect.h +-rw-r--r-- root/root usr/include/firefox/nsIXSLTProcessor.h +-rw-r--r-- root/root usr/include/firefox/nsIXSLTProcessorPrivate.h +-rw-r--r-- root/root usr/include/firefox/nsIXULAppInfo.h +-rw-r--r-- root/root usr/include/firefox/nsIXULBrowserWindow.h +-rw-r--r-- root/root usr/include/firefox/nsIXULBuilderListener.h +-rw-r--r-- root/root usr/include/firefox/nsIXULDocument.h +-rw-r--r-- root/root usr/include/firefox/nsIXULOverlayProvider.h +-rw-r--r-- root/root usr/include/firefox/nsIXULRuntime.h +-rw-r--r-- root/root usr/include/firefox/nsIXULSortService.h +-rw-r--r-- root/root usr/include/firefox/nsIXULStore.h +-rw-r--r-- root/root usr/include/firefox/nsIXULTemplateBuilder.h +-rw-r--r-- root/root usr/include/firefox/nsIXULTemplateQueryProcessor.h +-rw-r--r-- root/root usr/include/firefox/nsIXULTemplateResult.h +-rw-r--r-- root/root usr/include/firefox/nsIXULTemplateRuleFilter.h +-rw-r--r-- root/root usr/include/firefox/nsIXULWindow.h +-rw-r--r-- root/root usr/include/firefox/nsIZipReader.h +-rw-r--r-- root/root usr/include/firefox/nsIZipWriter.h +-rw-r--r-- root/root usr/include/firefox/nsImageLoadingContent.h +-rw-r--r-- root/root usr/include/firefox/nsImageModule.h +-rw-r--r-- root/root usr/include/firefox/nsInputStreamPump.h +-rw-r--r-- root/root usr/include/firefox/nsInterfaceHashtable.h +-rw-r--r-- root/root usr/include/firefox/nsInterfaceRequestorAgg.h +-rw-r--r-- root/root usr/include/firefox/nsJARURI.h +-rw-r--r-- root/root usr/include/firefox/nsJSEnvironment.h +-rw-r--r-- root/root usr/include/firefox/nsJSNPRuntime.h +-rw-r--r-- root/root usr/include/firefox/nsJSON.h +-rw-r--r-- root/root usr/include/firefox/nsJSPrincipals.h +-rw-r--r-- root/root usr/include/firefox/nsJSProtocolHandler.h +-rw-r--r-- root/root usr/include/firefox/nsJSThingHashtable.h +-rw-r--r-- root/root usr/include/firefox/nsJSUtils.h +-rw-r--r-- root/root usr/include/firefox/nsLWBrkCIID.h +-rw-r--r-- root/root usr/include/firefox/nsLayoutCID.h +-rw-r--r-- root/root usr/include/firefox/nsLayoutStatics.h +-rw-r--r-- root/root usr/include/firefox/nsLayoutStylesheetCache.h +-rw-r--r-- root/root usr/include/firefox/nsLayoutUtils.h +-rw-r--r-- root/root usr/include/firefox/nsLineBreaker.h +-rw-r--r-- root/root usr/include/firefox/nsLinebreakConverter.h +-rw-r--r-- root/root usr/include/firefox/nsLiteralString.h +-rw-r--r-- root/root usr/include/firefox/nsLocalFile.h +-rw-r--r-- root/root usr/include/firefox/nsLocalFileUnix.h +-rw-r--r-- root/root usr/include/firefox/nsMIMEInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsMappedAttributeElement.h +-rw-r--r-- root/root usr/include/firefox/nsMargin.h +-rw-r--r-- root/root usr/include/firefox/nsMathMLOperators.h +-rw-r--r-- root/root usr/include/firefox/nsMathUtils.h +-rw-r--r-- root/root usr/include/firefox/nsMediaSniffer.h +-rw-r--r-- root/root usr/include/firefox/nsMemory.h +-rw-r--r-- root/root usr/include/firefox/nsMemoryPressure.h +-rw-r--r-- root/root usr/include/firefox/nsMimeTypes.h +-rw-r--r-- root/root usr/include/firefox/nsMixedContentBlocker.h +-rw-r--r-- root/root usr/include/firefox/nsMultiplexInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsNCRFallbackEncoderWrapper.h +-rw-r--r-- root/root usr/include/firefox/nsNPAPIPluginInstance.h +-rw-r--r-- root/root usr/include/firefox/nsNSSCallbacks.h +-rw-r--r-- root/root usr/include/firefox/nsNSSCertificate.h +-rw-r--r-- root/root usr/include/firefox/nsNSSComponent.h +-rw-r--r-- root/root usr/include/firefox/nsNSSHelper.h +-rw-r--r-- root/root usr/include/firefox/nsNSSShutDown.h +-rw-r--r-- root/root usr/include/firefox/nsNSSU2FToken.h +-rw-r--r-- root/root usr/include/firefox/nsNameSpaceManager.h +-rw-r--r-- root/root usr/include/firefox/nsNativeCharsetUtils.h +-rw-r--r-- root/root usr/include/firefox/nsNetCID.h +-rw-r--r-- root/root usr/include/firefox/nsNetUtil.h +-rw-r--r-- root/root usr/include/firefox/nsNetUtilInlines.h +-rw-r--r-- root/root usr/include/firefox/nsNodeInfoManager.h +-rw-r--r-- root/root usr/include/firefox/nsNodeUtils.h +-rw-r--r-- root/root usr/include/firefox/nsNullPrincipal.h +-rw-r--r-- root/root usr/include/firefox/nsNullPrincipalURI.h +-rw-r--r-- root/root usr/include/firefox/nsOSHelperAppService.h +-rw-r--r-- root/root usr/include/firefox/nsObjCExceptions.h +-rw-r--r-- root/root usr/include/firefox/nsPIBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsPICommandUpdater.h +-rw-r--r-- root/root usr/include/firefox/nsPIDNSService.h +-rw-r--r-- root/root usr/include/firefox/nsPIDOMWindow.h +-rw-r--r-- root/root usr/include/firefox/nsPIDOMWindowInlines.h +-rw-r--r-- root/root usr/include/firefox/nsPIEditorTransaction.h +-rw-r--r-- root/root usr/include/firefox/nsPIListBoxObject.h +-rw-r--r-- root/root usr/include/firefox/nsPILoadGroupInternal.h +-rw-r--r-- root/root usr/include/firefox/nsPIPlacesDatabase.h +-rw-r--r-- root/root usr/include/firefox/nsPIPromptService.h +-rw-r--r-- root/root usr/include/firefox/nsPISocketTransportService.h +-rw-r--r-- root/root usr/include/firefox/nsPIWindowRoot.h +-rw-r--r-- root/root usr/include/firefox/nsPIWindowWatcher.h +-rw-r--r-- root/root usr/include/firefox/nsParserBase.h +-rw-r--r-- root/root usr/include/firefox/nsParserCIID.h +-rw-r--r-- root/root usr/include/firefox/nsParserConstants.h +-rw-r--r-- root/root usr/include/firefox/nsParserUtils.h +-rw-r--r-- root/root usr/include/firefox/nsPerformanceStats.h +-rw-r--r-- root/root usr/include/firefox/nsPluginDirServiceProvider.h +-rw-r--r-- root/root usr/include/firefox/nsPluginFrame.h +-rw-r--r-- root/root usr/include/firefox/nsPluginHost.h +-rw-r--r-- root/root usr/include/firefox/nsPluginInstanceOwner.h +-rw-r--r-- root/root usr/include/firefox/nsPluginLogging.h +-rw-r--r-- root/root usr/include/firefox/nsPluginNativeWindow.h +-rw-r--r-- root/root usr/include/firefox/nsPluginNativeWindowGtk.h +-rw-r--r-- root/root usr/include/firefox/nsPluginTags.h +-rw-r--r-- root/root usr/include/firefox/nsPluginsCID.h +-rw-r--r-- root/root usr/include/firefox/nsPluginsDir.h +-rw-r--r-- root/root usr/include/firefox/nsPoint.h +-rw-r--r-- root/root usr/include/firefox/nsPointerHashKeys.h +-rw-r--r-- root/root usr/include/firefox/nsPosixLocale.h +-rw-r--r-- root/root usr/include/firefox/nsPresArena.h +-rw-r--r-- root/root usr/include/firefox/nsPresArenaObjectList.h +-rw-r--r-- root/root usr/include/firefox/nsPresContext.h +-rw-r--r-- root/root usr/include/firefox/nsPresState.h +-rw-r--r-- root/root usr/include/firefox/nsPrintOptionsImpl.h +-rw-r--r-- root/root usr/include/firefox/nsPrintfCString.h +-rw-r--r-- root/root usr/include/firefox/nsPrintingProxy.h +-rw-r--r-- root/root usr/include/firefox/nsProcess.h +-rw-r--r-- root/root usr/include/firefox/nsPromiseFlatString.h +-rw-r--r-- root/root usr/include/firefox/nsPromptUtils.h +-rw-r--r-- root/root usr/include/firefox/nsPropertyTable.h +-rw-r--r-- root/root usr/include/firefox/nsProxyRelease.h +-rw-r--r-- root/root usr/include/firefox/nsQueryFrame.h +-rw-r--r-- root/root usr/include/firefox/nsQueryObject.h +-rw-r--r-- root/root usr/include/firefox/nsQuickSort.h +-rw-r--r-- root/root usr/include/firefox/nsRDFCID.h +-rw-r--r-- root/root usr/include/firefox/nsRDFResource.h +-rw-r--r-- root/root usr/include/firefox/nsRandomGenerator.h +-rw-r--r-- root/root usr/include/firefox/nsRange.h +-rw-r--r-- root/root usr/include/firefox/nsReadLine.h +-rw-r--r-- root/root usr/include/firefox/nsReadableUtils.h +-rw-r--r-- root/root usr/include/firefox/nsRect.h +-rw-r--r-- root/root usr/include/firefox/nsRefPtrHashtable.h +-rw-r--r-- root/root usr/include/firefox/nsReferencedElement.h +-rw-r--r-- root/root usr/include/firefox/nsRefreshDriver.h +-rw-r--r-- root/root usr/include/firefox/nsRegion.h +-rw-r--r-- root/root usr/include/firefox/nsRegionFwd.h +-rw-r--r-- root/root usr/include/firefox/nsRenderingContext.h +-rw-r--r-- root/root usr/include/firefox/nsRubyBaseContainerFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRubyBaseFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRubyFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRubyTextContainerFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRubyTextFrame.h +-rw-r--r-- root/root usr/include/firefox/nsRuleData.h +-rw-r--r-- root/root usr/include/firefox/nsRuleNode.h +-rw-r--r-- root/root usr/include/firefox/nsRuleProcessorData.h +-rw-r--r-- root/root usr/include/firefox/nsRuleWalker.h +-rw-r--r-- root/root usr/include/firefox/nsSAXAttributes.h +-rw-r--r-- root/root usr/include/firefox/nsSAXLocator.h +-rw-r--r-- root/root usr/include/firefox/nsSAXXMLReader.h +-rw-r--r-- root/root usr/include/firefox/nsSHEntryShared.h +-rw-r--r-- root/root usr/include/firefox/nsSMILAnimationController.h +-rw-r--r-- root/root usr/include/firefox/nsSMILAnimationFunction.h +-rw-r--r-- root/root usr/include/firefox/nsSMILCSSProperty.h +-rw-r--r-- root/root usr/include/firefox/nsSMILCompositorTable.h +-rw-r--r-- root/root usr/include/firefox/nsSMILInstanceTime.h +-rw-r--r-- root/root usr/include/firefox/nsSMILInterval.h +-rw-r--r-- root/root usr/include/firefox/nsSMILKeySpline.h +-rw-r--r-- root/root usr/include/firefox/nsSMILMappedAttribute.h +-rw-r--r-- root/root usr/include/firefox/nsSMILMilestone.h +-rw-r--r-- root/root usr/include/firefox/nsSMILNullType.h +-rw-r--r-- root/root usr/include/firefox/nsSMILRepeatCount.h +-rw-r--r-- root/root usr/include/firefox/nsSMILSetAnimationFunction.h +-rw-r--r-- root/root usr/include/firefox/nsSMILTargetIdentifier.h +-rw-r--r-- root/root usr/include/firefox/nsSMILTimeContainer.h +-rw-r--r-- root/root usr/include/firefox/nsSMILTimeValue.h +-rw-r--r-- root/root usr/include/firefox/nsSMILTimeValueSpec.h +-rw-r--r-- root/root usr/include/firefox/nsSMILTimeValueSpecParams.h +-rw-r--r-- root/root usr/include/firefox/nsSMILTimedElement.h +-rw-r--r-- root/root usr/include/firefox/nsSMILTypes.h +-rw-r--r-- root/root usr/include/firefox/nsSMILValue.h +-rw-r--r-- root/root usr/include/firefox/nsSVGClass.h +-rw-r--r-- root/root usr/include/firefox/nsSVGEffects.h +-rw-r--r-- root/root usr/include/firefox/nsSVGElement.h +-rw-r--r-- root/root usr/include/firefox/nsSVGFeatures.h +-rw-r--r-- root/root usr/include/firefox/nsSVGFilterInstance.h +-rw-r--r-- root/root usr/include/firefox/nsSVGForeignObjectFrame.h +-rw-r--r-- root/root usr/include/firefox/nsSVGIntegrationUtils.h +-rw-r--r-- root/root usr/include/firefox/nsSVGUtils.h +-rw-r--r-- root/root usr/include/firefox/nsSandboxFlags.h +-rw-r--r-- root/root usr/include/firefox/nsScannerString.h +-rw-r--r-- root/root usr/include/firefox/nsScriptLoader.h +-rw-r--r-- root/root usr/include/firefox/nsScriptableInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsSecurityHeaderParser.h +-rw-r--r-- root/root usr/include/firefox/nsSerializationHelper.h +-rw-r--r-- root/root usr/include/firefox/nsServiceManagerUtils.h +-rw-r--r-- root/root usr/include/firefox/nsSimpleNestedURI.h +-rw-r--r-- root/root usr/include/firefox/nsSimpleURI.h +-rw-r--r-- root/root usr/include/firefox/nsSize.h +-rw-r--r-- root/root usr/include/firefox/nsSpecialCasingData.h +-rw-r--r-- root/root usr/include/firefox/nsSplittableFrame.h +-rw-r--r-- root/root usr/include/firefox/nsStaticAtom.h +-rw-r--r-- root/root usr/include/firefox/nsStaticNameTable.h +-rw-r--r-- root/root usr/include/firefox/nsStorageStream.h +-rw-r--r-- root/root usr/include/firefox/nsStreamListenerWrapper.h +-rw-r--r-- root/root usr/include/firefox/nsStreamUtils.h +-rw-r--r-- root/root usr/include/firefox/nsString.h +-rw-r--r-- root/root usr/include/firefox/nsStringAPI.h +-rw-r--r-- root/root usr/include/firefox/nsStringBuffer.h +-rw-r--r-- root/root usr/include/firefox/nsStringEnumerator.h +-rw-r--r-- root/root usr/include/firefox/nsStringFwd.h +-rw-r--r-- root/root usr/include/firefox/nsStringGlue.h +-rw-r--r-- root/root usr/include/firefox/nsStringIterator.h +-rw-r--r-- root/root usr/include/firefox/nsStringStream.h +-rw-r--r-- root/root usr/include/firefox/nsStructuredCloneContainer.h +-rw-r--r-- root/root usr/include/firefox/nsStubAnimationObserver.h +-rw-r--r-- root/root usr/include/firefox/nsStubDocumentObserver.h +-rw-r--r-- root/root usr/include/firefox/nsStubMutationObserver.h +-rw-r--r-- root/root usr/include/firefox/nsStyleChangeList.h +-rw-r--r-- root/root usr/include/firefox/nsStyleConsts.h +-rw-r--r-- root/root usr/include/firefox/nsStyleContext.h +-rw-r--r-- root/root usr/include/firefox/nsStyleCoord.h +-rw-r--r-- root/root usr/include/firefox/nsStyleSet.h +-rw-r--r-- root/root usr/include/firefox/nsStyleSheetService.h +-rw-r--r-- root/root usr/include/firefox/nsStyleStruct.h +-rw-r--r-- root/root usr/include/firefox/nsStyleStructFwd.h +-rw-r--r-- root/root usr/include/firefox/nsStyleStructInlines.h +-rw-r--r-- root/root usr/include/firefox/nsStyleStructList.h +-rw-r--r-- root/root usr/include/firefox/nsStyleTransformMatrix.h +-rw-r--r-- root/root usr/include/firefox/nsStyleUtil.h +-rw-r--r-- root/root usr/include/firefox/nsStyledElement.h +-rw-r--r-- root/root usr/include/firefox/nsSubDocumentFrame.h +-rw-r--r-- root/root usr/include/firefox/nsSubstring.h +-rw-r--r-- root/root usr/include/firefox/nsSubstringTuple.h +-rw-r--r-- root/root usr/include/firefox/nsSupportsArray.h +-rw-r--r-- root/root usr/include/firefox/nsSupportsPrimitives.h +-rw-r--r-- root/root usr/include/firefox/nsTArray-inl.h +-rw-r--r-- root/root usr/include/firefox/nsTArray.h +-rw-r--r-- root/root usr/include/firefox/nsTArrayForwardDeclare.h +-rw-r--r-- root/root usr/include/firefox/nsTArrayHelpers.h +-rw-r--r-- root/root usr/include/firefox/nsTDependentString.h +-rw-r--r-- root/root usr/include/firefox/nsTDependentSubstring.h +-rw-r--r-- root/root usr/include/firefox/nsTHashtable.h +-rw-r--r-- root/root usr/include/firefox/nsTLiteralString.h +-rw-r--r-- root/root usr/include/firefox/nsTObserverArray.h +-rw-r--r-- root/root usr/include/firefox/nsTPriorityQueue.h +-rw-r--r-- root/root usr/include/firefox/nsTPromiseFlatString.h +-rw-r--r-- root/root usr/include/firefox/nsTString.h +-rw-r--r-- root/root usr/include/firefox/nsTSubstring.h +-rw-r--r-- root/root usr/include/firefox/nsTSubstringTuple.h +-rw-r--r-- root/root usr/include/firefox/nsTWeakRef.h +-rw-r--r-- root/root usr/include/firefox/nsTemporaryFileInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsTerminator.h +-rw-r--r-- root/root usr/include/firefox/nsTextEditorState.h +-rw-r--r-- root/root usr/include/firefox/nsTextFormatter.h +-rw-r--r-- root/root usr/include/firefox/nsTextFragment.h +-rw-r--r-- root/root usr/include/firefox/nsTextRunTransformations.h +-rw-r--r-- root/root usr/include/firefox/nsTextServicesCID.h +-rw-r--r-- root/root usr/include/firefox/nsThemeConstants.h +-rw-r--r-- root/root usr/include/firefox/nsThread.h +-rw-r--r-- root/root usr/include/firefox/nsThreadUtils.h +-rw-r--r-- root/root usr/include/firefox/nsToken.h +-rw-r--r-- root/root usr/include/firefox/nsToolkitCompsCID.h +-rw-r--r-- root/root usr/include/firefox/nsTraceRefcnt.h +-rw-r--r-- root/root usr/include/firefox/nsTransactionManagerCID.h +-rw-r--r-- root/root usr/include/firefox/nsTransform2D.h +-rw-r--r-- root/root usr/include/firefox/nsTraversal.h +-rw-r--r-- root/root usr/include/firefox/nsTreeColFrame.h +-rw-r--r-- root/root usr/include/firefox/nsTreeColumns.h +-rw-r--r-- root/root usr/include/firefox/nsTreeSanitizer.h +-rw-r--r-- root/root usr/include/firefox/nsTreeUtils.h +-rw-r--r-- root/root usr/include/firefox/nsUCSupport.h +-rw-r--r-- root/root usr/include/firefox/nsUCVJA2CID.h +-rw-r--r-- root/root usr/include/firefox/nsUCVJACID.h +-rw-r--r-- root/root usr/include/firefox/nsUConvCID.h +-rw-r--r-- root/root usr/include/firefox/nsUConvPropertySearch.h +-rw-r--r-- root/root usr/include/firefox/nsUCvCnCID.h +-rw-r--r-- root/root usr/include/firefox/nsUCvKOCID.h +-rw-r--r-- root/root usr/include/firefox/nsUCvLatinCID.h +-rw-r--r-- root/root usr/include/firefox/nsURIHashKey.h +-rw-r--r-- root/root usr/include/firefox/nsURILoader.h +-rw-r--r-- root/root usr/include/firefox/nsURLHelper.h +-rw-r--r-- root/root usr/include/firefox/nsURLParsers.h +-rw-r--r-- root/root usr/include/firefox/nsUTF8Utils.h +-rw-r--r-- root/root usr/include/firefox/nsUnicharInputStream.h +-rw-r--r-- root/root usr/include/firefox/nsUnicharUtilCIID.h +-rw-r--r-- root/root usr/include/firefox/nsUnicharUtils.h +-rw-r--r-- root/root usr/include/firefox/nsUnicodeNormalizer.h +-rw-r--r-- root/root usr/include/firefox/nsUnicodeProperties.h +-rw-r--r-- root/root usr/include/firefox/nsUnicodeScriptCodes.h +-rw-r--r-- root/root usr/include/firefox/nsUrlClassifierPrefixSet.h +-rw-r--r-- root/root usr/include/firefox/nsVariant.h +-rw-r--r-- root/root usr/include/firefox/nsVersionComparator.h +-rw-r--r-- root/root usr/include/firefox/nsView.h +-rw-r--r-- root/root usr/include/firefox/nsViewManager.h +-rw-r--r-- root/root usr/include/firefox/nsViewportInfo.h +-rw-r--r-- root/root usr/include/firefox/nsWeakPtr.h +-rw-r--r-- root/root usr/include/firefox/nsWeakReference.h +-rw-r--r-- root/root usr/include/firefox/nsWhitespaceTokenizer.h +-rw-r--r-- root/root usr/include/firefox/nsWidgetInitData.h +-rw-r--r-- root/root usr/include/firefox/nsWidgetsCID.h +-rw-r--r-- root/root usr/include/firefox/nsWildCard.h +-rw-r--r-- root/root usr/include/firefox/nsWin32Locale.h +-rw-r--r-- root/root usr/include/firefox/nsWindowMemoryReporter.h +-rw-r--r-- root/root usr/include/firefox/nsWindowWatcher.h +-rw-r--r-- root/root usr/include/firefox/nsWrapperCache.h +-rw-r--r-- root/root usr/include/firefox/nsWrapperCacheInlines.h +-rw-r--r-- root/root usr/include/firefox/nsX11ErrorHandler.h +-rw-r--r-- root/root usr/include/firefox/nsXBLBinding.h +-rw-r--r-- root/root usr/include/firefox/nsXBLService.h +-rw-r--r-- root/root usr/include/firefox/nsXMLNameSpaceMap.h +-rw-r--r-- root/root usr/include/firefox/nsXPCOM.h +-rw-r--r-- root/root usr/include/firefox/nsXPCOMCID.h +-rw-r--r-- root/root usr/include/firefox/nsXPCOMCIDInternal.h +-rw-r--r-- root/root usr/include/firefox/nsXPCOMGlue.h +-rw-r--r-- root/root usr/include/firefox/nsXPCOMStrings.h +-rw-r--r-- root/root usr/include/firefox/nsXPIDLString.h +-rw-r--r-- root/root usr/include/firefox/nsXPTCUtils.h +-rw-r--r-- root/root usr/include/firefox/nsXREAppData.h +-rw-r--r-- root/root usr/include/firefox/nsXULAppAPI.h +-rw-r--r-- root/root usr/include/firefox/nsXULPopupManager.h +-rw-r--r-- root/root usr/include/firefox/nsZipArchive.h +-rw-r--r-- root/root usr/include/firefox/nscore.h +-rw-r--r-- root/root usr/include/firefox/nspluginroot.h +-rw-r--r-- root/root usr/include/firefox/nsrootidl.h +drwxr-xr-x root/root usr/include/firefox/ogg/ +-rw-r--r-- root/root usr/include/firefox/ogg/config_types.h +-rw-r--r-- root/root usr/include/firefox/ogg/ogg.h +-rw-r--r-- root/root usr/include/firefox/ogg/os_types.h +-rw-r--r-- root/root usr/include/firefox/opentype-sanitiser.h +drwxr-xr-x root/root usr/include/firefox/opus/ +-rw-r--r-- root/root usr/include/firefox/opus/opus.h +-rw-r--r-- root/root usr/include/firefox/opus/opus_defines.h +-rw-r--r-- root/root usr/include/firefox/opus/opus_multistream.h +-rw-r--r-- root/root usr/include/firefox/opus/opus_types.h +-rw-r--r-- root/root usr/include/firefox/ots-memory-stream.h +-rw-r--r-- root/root usr/include/firefox/port.h +drwxr-xr-x root/root usr/include/firefox/psshparser/ +-rw-r--r-- root/root usr/include/firefox/psshparser/PsshParser.h +-rw-r--r-- root/root usr/include/firefox/qcms.h +-rw-r--r-- root/root usr/include/firefox/qcmstypes.h +-rw-r--r-- root/root usr/include/firefox/qsObjectHelper.h +-rw-r--r-- root/root usr/include/firefox/rdf.h +-rw-r--r-- root/root usr/include/firefox/rdfIDataSource.h +-rw-r--r-- root/root usr/include/firefox/rdfISerializer.h +-rw-r--r-- root/root usr/include/firefox/rdfITripleVisitor.h +-rw-r--r-- root/root usr/include/firefox/safebrowsing.pb.h +drwxr-xr-x root/root usr/include/firefox/snappy/ +-rw-r--r-- root/root usr/include/firefox/snappy/snappy-c.h +-rw-r--r-- root/root usr/include/firefox/snappy/snappy-stubs-public.h +-rw-r--r-- root/root usr/include/firefox/snappy/snappy.h +drwxr-xr-x root/root usr/include/firefox/soundtouch/ +-rw-r--r-- root/root usr/include/firefox/soundtouch/FIFOSamplePipe.h +-rw-r--r-- root/root usr/include/firefox/soundtouch/STTypes.h +-rw-r--r-- root/root usr/include/firefox/soundtouch/SoundTouch.h +-rw-r--r-- root/root usr/include/firefox/soundtouch/SoundTouchFactory.h +-rw-r--r-- root/root usr/include/firefox/soundtouch/soundtouch_config.h +-rw-r--r-- root/root usr/include/firefox/source-repo.h (EMPTY) +drwxr-xr-x root/root usr/include/firefox/speex/ +-rw-r--r-- root/root usr/include/firefox/speex/speex_resampler.h +-rw-r--r-- root/root usr/include/firefox/state.h +-rw-r--r-- root/root usr/include/firefox/string-template-def-char.h +-rw-r--r-- root/root usr/include/firefox/string-template-def-unichar.h +-rw-r--r-- root/root usr/include/firefox/string-template-undef.h +drwxr-xr-x root/root usr/include/firefox/theora/ +-rw-r--r-- root/root usr/include/firefox/theora/codec.h +-rw-r--r-- root/root usr/include/firefox/theora/theoradec.h +-rw-r--r-- root/root usr/include/firefox/theora/theoraenc.h +-rw-r--r-- root/root usr/include/firefox/txIEXSLTRegExFunctions.h +-rw-r--r-- root/root usr/include/firefox/txIFunctionEvaluationContext.h +-rw-r--r-- root/root usr/include/firefox/txINodeSet.h +-rw-r--r-- root/root usr/include/firefox/txIXPathObject.h +-rw-r--r-- root/root usr/include/firefox/types.h +-rw-r--r-- root/root usr/include/firefox/uconvutil.h +drwxr-xr-x root/root usr/include/firefox/unicode/ +-rw-r--r-- root/root usr/include/firefox/unicode/alphaindex.h +-rw-r--r-- root/root usr/include/firefox/unicode/appendable.h +-rw-r--r-- root/root usr/include/firefox/unicode/basictz.h +-rw-r--r-- root/root usr/include/firefox/unicode/brkiter.h +-rw-r--r-- root/root usr/include/firefox/unicode/bytestream.h +-rw-r--r-- root/root usr/include/firefox/unicode/bytestrie.h +-rw-r--r-- root/root usr/include/firefox/unicode/bytestriebuilder.h +-rw-r--r-- root/root usr/include/firefox/unicode/calendar.h +-rw-r--r-- root/root usr/include/firefox/unicode/caniter.h +-rw-r--r-- root/root usr/include/firefox/unicode/chariter.h +-rw-r--r-- root/root usr/include/firefox/unicode/choicfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/coleitr.h +-rw-r--r-- root/root usr/include/firefox/unicode/coll.h +-rw-r--r-- root/root usr/include/firefox/unicode/compactdecimalformat.h +-rw-r--r-- root/root usr/include/firefox/unicode/curramt.h +-rw-r--r-- root/root usr/include/firefox/unicode/currpinf.h +-rw-r--r-- root/root usr/include/firefox/unicode/currunit.h +-rw-r--r-- root/root usr/include/firefox/unicode/datefmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/dbbi.h +-rw-r--r-- root/root usr/include/firefox/unicode/dcfmtsym.h +-rw-r--r-- root/root usr/include/firefox/unicode/decimfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/docmain.h +-rw-r--r-- root/root usr/include/firefox/unicode/dtfmtsym.h +-rw-r--r-- root/root usr/include/firefox/unicode/dtintrv.h +-rw-r--r-- root/root usr/include/firefox/unicode/dtitvfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/dtitvinf.h +-rw-r--r-- root/root usr/include/firefox/unicode/dtptngen.h +-rw-r--r-- root/root usr/include/firefox/unicode/dtrule.h +-rw-r--r-- root/root usr/include/firefox/unicode/enumset.h +-rw-r--r-- root/root usr/include/firefox/unicode/errorcode.h +-rw-r--r-- root/root usr/include/firefox/unicode/fieldpos.h +-rw-r--r-- root/root usr/include/firefox/unicode/filteredbrk.h +-rw-r--r-- root/root usr/include/firefox/unicode/fmtable.h +-rw-r--r-- root/root usr/include/firefox/unicode/format.h +-rw-r--r-- root/root usr/include/firefox/unicode/fpositer.h +-rw-r--r-- root/root usr/include/firefox/unicode/gender.h +-rw-r--r-- root/root usr/include/firefox/unicode/gregocal.h +-rw-r--r-- root/root usr/include/firefox/unicode/icudataver.h +-rw-r--r-- root/root usr/include/firefox/unicode/icuplug.h +-rw-r--r-- root/root usr/include/firefox/unicode/idna.h +-rw-r--r-- root/root usr/include/firefox/unicode/listformatter.h +-rw-r--r-- root/root usr/include/firefox/unicode/localpointer.h +-rw-r--r-- root/root usr/include/firefox/unicode/locdspnm.h +-rw-r--r-- root/root usr/include/firefox/unicode/locid.h +-rw-r--r-- root/root usr/include/firefox/unicode/measfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/measunit.h +-rw-r--r-- root/root usr/include/firefox/unicode/measure.h +-rw-r--r-- root/root usr/include/firefox/unicode/messagepattern.h +-rw-r--r-- root/root usr/include/firefox/unicode/msgfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/normalizer2.h +-rw-r--r-- root/root usr/include/firefox/unicode/normlzr.h +-rw-r--r-- root/root usr/include/firefox/unicode/numfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/numsys.h +-rw-r--r-- root/root usr/include/firefox/unicode/parseerr.h +-rw-r--r-- root/root usr/include/firefox/unicode/parsepos.h +-rw-r--r-- root/root usr/include/firefox/unicode/platform.h +-rw-r--r-- root/root usr/include/firefox/unicode/plurfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/plurrule.h +-rw-r--r-- root/root usr/include/firefox/unicode/ptypes.h +-rw-r--r-- root/root usr/include/firefox/unicode/putil.h +-rw-r--r-- root/root usr/include/firefox/unicode/rbbi.h +-rw-r--r-- root/root usr/include/firefox/unicode/rbnf.h +-rw-r--r-- root/root usr/include/firefox/unicode/rbtz.h +-rw-r--r-- root/root usr/include/firefox/unicode/regex.h +-rw-r--r-- root/root usr/include/firefox/unicode/region.h +-rw-r--r-- root/root usr/include/firefox/unicode/reldatefmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/rep.h +-rw-r--r-- root/root usr/include/firefox/unicode/resbund.h +-rw-r--r-- root/root usr/include/firefox/unicode/schriter.h +-rw-r--r-- root/root usr/include/firefox/unicode/scientificnumberformatter.h +-rw-r--r-- root/root usr/include/firefox/unicode/search.h +-rwxr-xr-x root/root usr/include/firefox/unicode/selfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/simpleformatter.h +-rw-r--r-- root/root usr/include/firefox/unicode/simpletz.h +-rw-r--r-- root/root usr/include/firefox/unicode/smpdtfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/sortkey.h +-rw-r--r-- root/root usr/include/firefox/unicode/std_string.h +-rw-r--r-- root/root usr/include/firefox/unicode/strenum.h +-rw-r--r-- root/root usr/include/firefox/unicode/stringpiece.h +-rw-r--r-- root/root usr/include/firefox/unicode/stringtriebuilder.h +-rw-r--r-- root/root usr/include/firefox/unicode/stsearch.h +-rw-r--r-- root/root usr/include/firefox/unicode/symtable.h +-rw-r--r-- root/root usr/include/firefox/unicode/tblcoll.h +-rw-r--r-- root/root usr/include/firefox/unicode/timezone.h +-rw-r--r-- root/root usr/include/firefox/unicode/tmunit.h +-rw-r--r-- root/root usr/include/firefox/unicode/tmutamt.h +-rw-r--r-- root/root usr/include/firefox/unicode/tmutfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/translit.h +-rw-r--r-- root/root usr/include/firefox/unicode/tzfmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/tznames.h +-rw-r--r-- root/root usr/include/firefox/unicode/tzrule.h +-rw-r--r-- root/root usr/include/firefox/unicode/tztrans.h +-rw-r--r-- root/root usr/include/firefox/unicode/ubidi.h +-rw-r--r-- root/root usr/include/firefox/unicode/ubiditransform.h +-rw-r--r-- root/root usr/include/firefox/unicode/ubrk.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucal.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucasemap.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucat.h +-rw-r--r-- root/root usr/include/firefox/unicode/uchar.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucharstrie.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucharstriebuilder.h +-rw-r--r-- root/root usr/include/firefox/unicode/uchriter.h +-rw-r--r-- root/root usr/include/firefox/unicode/uclean.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucnv.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucnv_cb.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucnv_err.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucnvsel.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucol.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucoleitr.h +-rw-r--r-- root/root usr/include/firefox/unicode/uconfig.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucsdet.h +-rw-r--r-- root/root usr/include/firefox/unicode/ucurr.h +-rw-r--r-- root/root usr/include/firefox/unicode/udat.h +-rw-r--r-- root/root usr/include/firefox/unicode/udata.h +-rw-r--r-- root/root usr/include/firefox/unicode/udateintervalformat.h +-rw-r--r-- root/root usr/include/firefox/unicode/udatpg.h +-rw-r--r-- root/root usr/include/firefox/unicode/udisplaycontext.h +-rw-r--r-- root/root usr/include/firefox/unicode/uenum.h +-rw-r--r-- root/root usr/include/firefox/unicode/ufieldpositer.h +-rw-r--r-- root/root usr/include/firefox/unicode/uformattable.h +-rw-r--r-- root/root usr/include/firefox/unicode/ugender.h +-rw-r--r-- root/root usr/include/firefox/unicode/uidna.h +-rw-r--r-- root/root usr/include/firefox/unicode/uiter.h +-rw-r--r-- root/root usr/include/firefox/unicode/uldnames.h +-rw-r--r-- root/root usr/include/firefox/unicode/ulistformatter.h +-rw-r--r-- root/root usr/include/firefox/unicode/uloc.h +-rw-r--r-- root/root usr/include/firefox/unicode/ulocdata.h +-rw-r--r-- root/root usr/include/firefox/unicode/umachine.h +-rw-r--r-- root/root usr/include/firefox/unicode/umisc.h +-rw-r--r-- root/root usr/include/firefox/unicode/umsg.h +-rw-r--r-- root/root usr/include/firefox/unicode/unifilt.h +-rw-r--r-- root/root usr/include/firefox/unicode/unifunct.h +-rw-r--r-- root/root usr/include/firefox/unicode/unimatch.h +-rw-r--r-- root/root usr/include/firefox/unicode/unirepl.h +-rw-r--r-- root/root usr/include/firefox/unicode/uniset.h +-rw-r--r-- root/root usr/include/firefox/unicode/unistr.h +-rw-r--r-- root/root usr/include/firefox/unicode/unorm.h +-rw-r--r-- root/root usr/include/firefox/unicode/unorm2.h +-rw-r--r-- root/root usr/include/firefox/unicode/unum.h +-rw-r--r-- root/root usr/include/firefox/unicode/unumsys.h +-rw-r--r-- root/root usr/include/firefox/unicode/uobject.h +-rw-r--r-- root/root usr/include/firefox/unicode/upluralrules.h +-rw-r--r-- root/root usr/include/firefox/unicode/uregex.h +-rw-r--r-- root/root usr/include/firefox/unicode/uregion.h +-rw-r--r-- root/root usr/include/firefox/unicode/ureldatefmt.h +-rw-r--r-- root/root usr/include/firefox/unicode/urename.h +-rw-r--r-- root/root usr/include/firefox/unicode/urep.h +-rw-r--r-- root/root usr/include/firefox/unicode/ures.h +-rw-r--r-- root/root usr/include/firefox/unicode/uscript.h +-rw-r--r-- root/root usr/include/firefox/unicode/usearch.h +-rw-r--r-- root/root usr/include/firefox/unicode/uset.h +-rw-r--r-- root/root usr/include/firefox/unicode/usetiter.h +-rw-r--r-- root/root usr/include/firefox/unicode/ushape.h +-rw-r--r-- root/root usr/include/firefox/unicode/uspoof.h +-rw-r--r-- root/root usr/include/firefox/unicode/usprep.h +-rw-r--r-- root/root usr/include/firefox/unicode/ustring.h +-rw-r--r-- root/root usr/include/firefox/unicode/ustringtrie.h +-rw-r--r-- root/root usr/include/firefox/unicode/utext.h +-rw-r--r-- root/root usr/include/firefox/unicode/utf.h +-rw-r--r-- root/root usr/include/firefox/unicode/utf16.h +-rw-r--r-- root/root usr/include/firefox/unicode/utf32.h +-rw-r--r-- root/root usr/include/firefox/unicode/utf8.h +-rw-r--r-- root/root usr/include/firefox/unicode/utf_old.h +-rw-r--r-- root/root usr/include/firefox/unicode/utmscale.h +-rw-r--r-- root/root usr/include/firefox/unicode/utrace.h +-rw-r--r-- root/root usr/include/firefox/unicode/utrans.h +-rw-r--r-- root/root usr/include/firefox/unicode/utypes.h +-rw-r--r-- root/root usr/include/firefox/unicode/uvernum.h +-rw-r--r-- root/root usr/include/firefox/unicode/uversion.h +-rw-r--r-- root/root usr/include/firefox/unicode/vtzone.h +drwxr-xr-x root/root usr/include/firefox/vorbis/ +-rw-r--r-- root/root usr/include/firefox/vorbis/codec.h +-rw-r--r-- root/root usr/include/firefox/vorbis/vorbisenc.h +drwxr-xr-x root/root usr/include/firefox/vpx/ +-rw-r--r-- root/root usr/include/firefox/vpx/arm.h +-rw-r--r-- root/root usr/include/firefox/vpx/svc_context.h +-rw-r--r-- root/root usr/include/firefox/vpx/vp8.h +-rw-r--r-- root/root usr/include/firefox/vpx/vp8cx.h +-rw-r--r-- root/root usr/include/firefox/vpx/vp8dx.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_codec.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_decoder.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_encoder.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_frame_buffer.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_image.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_integer.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_mem_intrnl.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_scale.h +-rw-r--r-- root/root usr/include/firefox/vpx/vpx_timer.h +-rw-r--r-- root/root usr/include/firefox/vpx/x86.h +-rw-r--r-- root/root usr/include/firefox/vpx/yv12config.h +-rw-r--r-- root/root usr/include/firefox/woff2_dec.h +-rw-r--r-- root/root usr/include/firefox/woff2_out.h +-rw-r--r-- root/root usr/include/firefox/xpcAccEvents.h +-rw-r--r-- root/root usr/include/firefox/xpcAccessibilityService.h +-rw-r--r-- root/root usr/include/firefox/xpcIJSGetFactory.h +-rw-r--r-- root/root usr/include/firefox/xpcIJSModuleLoader.h +-rw-r--r-- root/root usr/include/firefox/xpcIJSWeakReference.h +-rw-r--r-- root/root usr/include/firefox/xpcObjectHelper.h +-rw-r--r-- root/root usr/include/firefox/xpc_make_class.h +-rw-r--r-- root/root usr/include/firefox/xpc_map_end.h +-rw-r--r-- root/root usr/include/firefox/xpccomponents.h +-rw-r--r-- root/root usr/include/firefox/xpcexception.h +-rw-r--r-- root/root usr/include/firefox/xpcjsid.h +-rw-r--r-- root/root usr/include/firefox/xpcom-config.h +-rw-r--r-- root/root usr/include/firefox/xpcpublic.h +-rw-r--r-- root/root usr/include/firefox/xpt_arena.h +-rw-r--r-- root/root usr/include/firefox/xpt_struct.h +-rw-r--r-- root/root usr/include/firefox/xpt_xdr.h +-rw-r--r-- root/root usr/include/firefox/xptcall.h +-rw-r--r-- root/root usr/include/firefox/xptcstubsdecl.inc +-rw-r--r-- root/root usr/include/firefox/xptcstubsdef.inc +-rw-r--r-- root/root usr/include/firefox/xptinfo.h +-rw-r--r-- root/root usr/include/firefox/xrecore.h +-rw-r--r-- root/root usr/include/firefox/zipstruct.h +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/firefox-devel/ +lrwxrwxrwx root/root usr/lib/firefox-devel/bin -> /usr/lib/firefox +lrwxrwxrwx root/root usr/lib/firefox-devel/idl -> /usr/share/idl/firefox +lrwxrwxrwx root/root usr/lib/firefox-devel/include -> /usr/include/firefox +lrwxrwxrwx root/root usr/lib/firefox-devel/lib -> /usr/lib/firefox-devel/sdk/lib +drwxr-xr-x root/root usr/lib/firefox-devel/sdk/ +drwxr-xr-x root/root usr/lib/firefox-devel/sdk/bin/ +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/bin/header.py +drwxr-xr-x root/root usr/lib/firefox-devel/sdk/bin/ply/ +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/bin/ply/__init__.py +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/bin/ply/lex.py +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/bin/ply/yacc.py +-rwxr-xr-x root/root usr/lib/firefox-devel/sdk/bin/run-mozilla.sh +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/bin/typelib.py +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/bin/xpcshell +-rwxr-xr-x root/root usr/lib/firefox-devel/sdk/bin/xpidl.py +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/bin/xpidllex.py +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/bin/xpidlyacc.py +-rwxr-xr-x root/root usr/lib/firefox-devel/sdk/bin/xpt.py +drwxr-xr-x root/root usr/lib/firefox-devel/sdk/lib/ +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libmemory.a +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libmozglue.a +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libunicharutil_external_s.a +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libxpcomglue.a +-rw-r--r-- root/root usr/lib/firefox-devel/sdk/lib/libxpcomglue_s.a +-rwxr-xr-x root/root usr/lib/firefox-devel/sdk/lib/libxul.so +-rw-r--r-- root/root usr/lib/firefox-devel/xpcom-config.h +drwxr-xr-x root/root usr/lib/firefox/ +-rw-r--r-- root/root usr/lib/firefox/application.ini +drwxr-xr-x root/root usr/lib/firefox/browser/ +-rw-r--r-- root/root usr/lib/firefox/browser/blocklist.xml +-rw-r--r-- root/root usr/lib/firefox/browser/chrome.manifest (EMPTY) +drwxr-xr-x root/root usr/lib/firefox/browser/chrome/ +drwxr-xr-x root/root usr/lib/firefox/browser/chrome/icons/ +drwxr-xr-x root/root usr/lib/firefox/browser/chrome/icons/default/ +-rw-r--r-- root/root usr/lib/firefox/browser/chrome/icons/default/default16.png +-rw-r--r-- root/root usr/lib/firefox/browser/chrome/icons/default/default32.png +-rw-r--r-- root/root usr/lib/firefox/browser/chrome/icons/default/default48.png +drwxr-xr-x root/root usr/lib/firefox/browser/extensions/ +-rw-r--r-- root/root usr/lib/firefox/browser/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}.xpi +drwxr-xr-x root/root usr/lib/firefox/browser/features/ +-rw-r--r-- root/root usr/lib/firefox/browser/features/aushelper@mozilla.org.xpi +-rw-r--r-- root/root usr/lib/firefox/browser/features/e10srollout@mozilla.org.xpi +drwxr-xr-x root/root usr/lib/firefox/browser/icons/ +-rw-r--r-- root/root usr/lib/firefox/browser/icons/mozicon128.png +-rw-r--r-- root/root usr/lib/firefox/browser/omni.ja +-rw-r--r-- root/root usr/lib/firefox/chrome.manifest (EMPTY) +drwxr-xr-x root/root usr/lib/firefox/defaults/ +drwxr-xr-x root/root usr/lib/firefox/defaults/pref/ +-rw-r--r-- root/root usr/lib/firefox/defaults/pref/channel-prefs.js +-rw-r--r-- root/root usr/lib/firefox/dependentlibs.list +drwxr-xr-x root/root usr/lib/firefox/dictionaries/ +-rw-r--r-- root/root usr/lib/firefox/dictionaries/en-US.aff +-rw-r--r-- root/root usr/lib/firefox/dictionaries/en-US.dic +-rwxr-xr-x root/root usr/lib/firefox/firefox +-rwxr-xr-x root/root usr/lib/firefox/firefox-bin +drwxr-xr-x root/root usr/lib/firefox/fonts/ +-rw-r--r-- root/root usr/lib/firefox/fonts/EmojiOneMozilla.ttf +drwxr-xr-x root/root usr/lib/firefox/gmp-clearkey/ +drwxr-xr-x root/root usr/lib/firefox/gmp-clearkey/0.1/ +-rw-r--r-- root/root usr/lib/firefox/gmp-clearkey/0.1/clearkey.info +-rwxr-xr-x root/root usr/lib/firefox/gmp-clearkey/0.1/libclearkey.so +drwxr-xr-x root/root usr/lib/firefox/gtk2/ +-rwxr-xr-x root/root usr/lib/firefox/gtk2/libmozgtk.so +-rw-r--r-- root/root usr/lib/firefox/icudt58l.dat +-rwxr-xr-x root/root usr/lib/firefox/liblgpllibs.so +-rwxr-xr-x root/root usr/lib/firefox/libmozgtk.so +-rwxr-xr-x root/root usr/lib/firefox/libxul.so +-rw-r--r-- root/root usr/lib/firefox/omni.ja +-rw-r--r-- root/root usr/lib/firefox/platform.ini +-rwxr-xr-x root/root usr/lib/firefox/plugin-container +-rw-r--r-- root/root usr/lib/firefox/removed-files +-rwxr-xr-x root/root usr/lib/firefox/run-mozilla.sh +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/firefox.desktop +drwxr-xr-x root/root usr/share/idl/ +drwxr-xr-x root/root usr/share/idl/firefox/ +-rw-r--r-- root/root usr/share/idl/firefox/IJSDebugger.idl +-rw-r--r-- root/root usr/share/idl/firefox/IPeerConnection.idl +-rw-r--r-- root/root usr/share/idl/firefox/amIAddonManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/amIAddonPathService.idl +-rw-r--r-- root/root usr/share/idl/firefox/amIWebInstallListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/amIWebInstaller.idl +-rw-r--r-- root/root usr/share/idl/firefox/domstubs.idl +-rw-r--r-- root/root usr/share/idl/firefox/extIApplication.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgICache.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgIContainer.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgIContainerDebug.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgIEncoder.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgILoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgINotificationObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgIOnloadBlocker.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgIRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgIScriptedNotificationObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/imgITools.idl +-rw-r--r-- root/root usr/share/idl/firefox/inICSSValueSearch.idl +-rw-r--r-- root/root usr/share/idl/firefox/inIDOMUtils.idl +-rw-r--r-- root/root usr/share/idl/firefox/inIDOMView.idl +-rw-r--r-- root/root usr/share/idl/firefox/inIDeepTreeWalker.idl +-rw-r--r-- root/root usr/share/idl/firefox/inISearchObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/inISearchProcess.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIApplication.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIApplicationClearPrivateDataParams.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIAsyncFavicons.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIAsyncHistory.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIAsyncLivemarks.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIColorAnalyzer.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIDOMWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIDownloadPlatform.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIGeckoMediaPluginChromeService.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIGeckoMediaPluginService.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIJSSubScriptLoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIMozIntl.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIPersonalDictionary.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIPlacesAutoComplete.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIPlacesPendingOperation.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozISpellCheckingEngine.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozISpellI18NManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozISpellI18NUtil.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageAggregateFunction.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageAsyncConnection.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageAsyncStatement.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageBaseStatement.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageBindingParams.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageBindingParamsArray.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageCompletionCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageConnection.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageError.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageFunction.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStoragePendingStatement.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageProgressHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageResultSet.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageRow.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageService.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageStatement.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageStatementCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageStatementParams.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageStatementRow.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageVacuumParticipant.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIStorageValueArray.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozITXTToHTMLConv.idl +-rw-r--r-- root/root usr/share/idl/firefox/mozIThirdPartyUtil.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsCDefaultURIFixup.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsCExternalHandlerService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsCURILoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsCWebBrowser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsCWebBrowserPersist.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIASN1Object.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIASN1PrintableItem.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIASN1Sequence.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIASN1Tree.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAboutModule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAboutNewTabService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibilityService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessible.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleApplication.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleCaretMoveEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleDocument.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleEditableText.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleHideEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleHyperLink.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleHyperText.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleImage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleObjectAttributeChangedEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessiblePivot.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleRelation.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleRole.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleSelectable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleStateChangeEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleStates.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleTable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleTableChangeEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleText.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleTextChangeEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleTextRange.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleTypes.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleValue.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAccessibleVirtualCursorChangeEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAddonInterposition.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAddonPolicyService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAlertsService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAnnotationService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAppShell.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAppShellService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAppStartup.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIApplicationCache.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIApplicationCacheChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIApplicationCacheContainer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIApplicationCacheService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIApplicationChooser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIApplicationReputation.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAppsService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIArray.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIArrayBufferInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIArrayExtensions.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAssociatedContentSecurity.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAsyncInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAsyncOutputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAsyncShutdown.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAsyncStreamCopier.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAsyncStreamCopier2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAsyncVerifyRedirectCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAtom.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAtomService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAudioChannelAgent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAudioChannelService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAuthInformation.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAuthModule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAuthPrompt.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAuthPrompt2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAuthPromptAdapterFactory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAuthPromptCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAuthPromptProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAutoCompleteController.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAutoCompleteInput.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAutoCompletePopup.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAutoCompleteResult.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAutoCompleteSearch.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAutoCompleteSimpleResult.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIAutoConfig.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBFCacheEntry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBackgroundFileSaver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBadCertListener2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBaseWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBidiKeyboard.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBinaryInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBinaryOutputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBlocklistService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBoxObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowserBoxObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowserDOMWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowserElementAPI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowserGlue.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowserHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowserHistory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowserProfileMigrator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBrowserSearchService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIBufferedStreams.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIByteRangeRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICSSUnprefixingService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICache.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheEntry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheEntryDescriptor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheEntryDoomCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheEntryOpenCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheInfoChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheSession.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheStorage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheStorageService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheStorageVisitor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheTesting.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICacheVisitor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICachingChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICancelable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICaptivePortalDetector.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICaptivePortalService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICategoryManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICertBlocklist.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICertOverrideService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICertTree.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICertificateDialogs.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIChannelEventSink.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIChannelWithDivertableParentListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIChildChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIChromeRegistry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClassInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClassOfService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClientAuthDialogs.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClipboard.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClipboardCommands.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClipboardDragDropHookList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClipboardDragDropHooks.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClipboardHelper.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIClipboardOwner.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICloneableInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICollation.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICollection.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIColorPicker.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICommandHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICommandLine.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICommandLineHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICommandLineRunner.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICommandLineValidator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICommandManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICommandParams.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIComponentManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIComponentRegistrar.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICompressConvStats.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIConsoleAPIStorage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIConsoleListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIConsoleMessage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIConsoleService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContainerBoxObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentDispatchChooser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentFilter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentPermissionPrompt.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentPolicy.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentPolicyBase.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentPrefService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentPrefService2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentSecurityManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentSecurityPolicy.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentSignatureVerifier.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentSniffer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentURIGrouper.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentViewer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentViewerContainer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentViewerEdit.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContentViewerFile.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContextMenuListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIContextMenuListener2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIController.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIControllerCommand.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIControllerCommandTable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIControllerContext.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIControllers.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIConverterInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIConverterOutputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICookie.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICookie2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICookieAcceptDialog.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICookieManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICookieManager2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICookiePermission.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICookiePromptService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICookieService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICryptoFIPSInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICryptoHMAC.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICryptoHash.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsICycleCollectorListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDNSListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDNSRecord.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDNSService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDNSServiceDiscovery.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMAnimationEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMAttr.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMBeforeUnloadEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMBlob.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCDATASection.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSConditionRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSCounterStyleRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSFontFaceRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSFontFeatureValuesRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSGroupingRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSImportRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSKeyframeRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSKeyframesRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSMediaRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSMozDocumentRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSPageRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSPrimitiveValue.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSRuleList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSStyleDeclaration.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSStyleRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSStyleSheet.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSSupportsRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSUnknownRule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSValue.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCSSValueList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCanvasRenderingContext2D.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCharacterData.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMChromeWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMClientRect.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMClientRectList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMClipboardEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCommandEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMComment.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMConstructor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCounter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCrypto.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMCustomEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDOMCursor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDOMException.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDOMImplementation.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDOMRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDataChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDataContainerEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDataTransfer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDocument.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDocumentFragment.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDocumentType.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDocumentXBL.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMDragEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMEventListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMEventTarget.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMFileList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMFocusEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMFontFace.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMFontFaceList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMFormData.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMGeoGeolocation.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMGeoPosition.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMGeoPositionCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMGeoPositionCoords.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMGeoPositionError.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMGeoPositionErrorCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMGlobalPropertyInitializer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLAnchorElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLAppletElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLAreaElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLBaseElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLBodyElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLButtonElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLCanvasElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLCollection.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLDirectoryElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLDocument.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLEmbedElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLFieldSetElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLFormElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLFrameElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLFrameSetElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLHRElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLHeadElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLHtmlElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLIFrameElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLImageElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLInputElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLLIElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLLabelElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLLinkElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLMapElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLMediaElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLMenuElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLMenuItemElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLMetaElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLOListElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLObjectElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLOptGroupElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLOptionElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLOptionsCollection.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLParagraphElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLPictureElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLPreElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLQuoteElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLScriptElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLSelectElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLSourceElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLStyleElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLTableCellElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLTextAreaElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHTMLUListElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMHistory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMKeyEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMLocation.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMMediaList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMModalContentWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMMouseEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMMouseScrollEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMMozBrowserFrame.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMMozNamedAttrMap.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMMutationEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNSEditableElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNSEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNavigator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNavigatorUserMedia.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNode.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNodeFilter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNodeIterator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNodeList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMNotifyPaintEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMOfflineResourceList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMPaintRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMParser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMProcessingInstruction.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMRange.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMRect.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMSVGElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMSVGLength.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMScreen.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMScrollAreaEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMSerializer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMSimpleGestureEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMStorage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMStorageManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMStyleSheet.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMStyleSheetList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMText.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMTimeEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMTimeRanges.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMTransitionEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMTreeWalker.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMUIEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMValidityState.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMWakeLockListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMWebGLRenderingContext.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMWheelEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMWindowCollection.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMWindowUtils.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXMLDocument.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXPathEvaluator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXPathResult.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULButtonElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULCheckboxElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULCommandDispatcher.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULCommandEvent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULContainerElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULControlElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULDescriptionElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULDocument.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULImageElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULLabelElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULLabeledControlEl.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULMenuListElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULMultSelectCntrlEl.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULPopupElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULRelatedElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULSelectCntrlEl.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULSelectCntrlItemEl.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULTextboxElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDOMXULTreeElement.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDashboard.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDashboardEventNotifier.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDataSignatureVerifier.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDatePicker.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDateTimeInputArea.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDebug2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDeprecationWarner.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDeviceSensors.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDialogParamBlock.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDirIndex.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDirIndexListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDirectoryEnumerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDirectoryService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDiskSpaceWatcher.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDisplayInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDivertableChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocCharset.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocShell.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocShellLoadInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocShellTreeItem.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocShellTreeOwner.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocumentEncoder.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocumentLoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocumentLoaderFactory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDocumentStateListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDomainPolicy.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDownload.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDownloadHistory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDownloadManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDownloadManagerUI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDownloadProgressListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDownloader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDragService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDragSession.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIDroppedLinkHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditActionListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditingSession.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditorIMESupport.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditorMailSupport.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditorObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditorSpellCheck.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditorStyleSheets.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEditorUtils.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEffectiveTLDService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEmbeddingSiteWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEncodedChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEntityConverter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEnumerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEnvironment.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIErrorService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEventListenerService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIEventTarget.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIException.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIExpatSink.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIExtendedExpatSink.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIExternalHelperAppService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIExternalProtocolHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIExternalProtocolService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIExternalSharingAppService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIExternalURLHandlerService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFTPChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFTPChannelParentInternal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFactory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFaviconService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeed.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedContainer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedElementBase.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedEntry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedGenerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedPerson.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedProcessor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedResult.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedResultService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFeedTextConstruct.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFile.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFileChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFilePicker.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFileProtocolHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFileStreams.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFileURL.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFileView.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFinalizationWitnessService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFind.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFindService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFocusManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFontEnumerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIForcePendingChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFormAutoComplete.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFormAutofillContentService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFormFillController.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFormHistory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFormPOSTActionChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFormSubmitObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFormatConverter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFrameLoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIFxAccountsUIGlue.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGConfService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGIOService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGNOMEShellService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGSettingsService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGZFileWriter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGenKeypairInfoDlg.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGeolocationProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGfxInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGfxInfoDebug.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGlobalHistory2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIGroupedSHistory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHTMLAbsPosEditor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHTMLEditor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHTMLInlineTableEditor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHTMLMenu.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHTMLObjectResizeListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHTMLObjectResizer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHTTPHeaderListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHTTPIndex.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHandlerService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHangReport.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHapticFeedback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHashable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHelperAppLauncherDialog.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHstsPrimingCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpActivityObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpAuthManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpAuthenticableChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpAuthenticator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpAuthenticatorCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpChannelAuthProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpChannelChild.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpChannelInternal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpEventSink.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpHeaderVisitor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpProtocolHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIHttpPushListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIDNService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIINIParser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIOService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIOService2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIOUtil.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIconURI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIdentityCryptoService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIdleObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIdlePeriod.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIdleService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIdleServiceInternal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIImageDocument.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIImageLoadingContent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIncrementalDownload.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIIncrementalStreamLoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInlineSpellChecker.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInputListAutoComplete.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInputStreamChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInputStreamPump.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInputStreamTee.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInterfaceInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInterfaceInfoManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIInterfaceRequestor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIJARChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIJARProtocolHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIJARURI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIJSInspector.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIJSON.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIKeyModule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIKeygenThread.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILineInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIListBoxObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoadContext.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoadContextInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoadGroup.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoadGroupChild.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoadInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILocalCertService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILocalFile.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILocalFileWin.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILocale.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILocaleService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoginInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoginManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoginManagerCrypto.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoginManagerPrompter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoginManagerStorage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsILoginMetaInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMIMEHeaderParam.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMIMEInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMIMEInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMIMEService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMediaManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMemory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMemoryInfoDumper.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMemoryReporter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMenuBoxObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMenuBuilder.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMessageLoop.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMessageManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIModule.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMozBrowserFrame.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMozNavigatorNetwork.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMozSAXXMLDeclarationHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMultiPartChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMultiplexInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMutable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIMutableArray.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINSSErrorsService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINSSU2FToken.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINSSVersion.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINativeAppSupport.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINativeFileWatcher.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINativeOSFileInternals.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINavBookmarksService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINavHistoryService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINestedURI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINetAddr.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINetUtil.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINetworkInfoService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINetworkInterceptController.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINetworkLinkService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINetworkPredictor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINetworkPredictorVerifier.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINetworkProperties.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINotificationStorage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsINullChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIOSFileConstantsService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIObjectInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIObjectLoadingContent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIObjectOutputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIObserverService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIOfflineCacheUpdate.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIOutputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPK11Token.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPK11TokenDB.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPKCS11.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPKCS11Module.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPKCS11ModuleDB.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPKCS11Slot.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPackageKitService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIParentChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIParentRedirectingChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIParentalControlsService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIParserUtils.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPartialSHistory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPartialSHistoryListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPerformanceStats.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPermission.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPermissionManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPermissionPromptService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPersistentProperties2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPhonetic.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPipe.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPlaintextEditor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPlatformInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPluginDocument.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPluginHost.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPluginInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPluginInstanceOwner.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPluginTag.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPopupWindowManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPowerManagerService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrefBranch.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrefBranch2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrefBranchInternal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrefLocalizedString.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrefService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrefetchService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationControlChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationControlService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationDevice.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationDeviceManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationDevicePrompt.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationDeviceProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationLocalDevice.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationRequestUIGlue.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationSessionRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationSessionTransport.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationSessionTransportBuilder.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPresentationTerminateRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrincipal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrintProgress.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrintProgressParams.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrintSession.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrintSettings.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrintSettingsService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrintStatusFeedback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrinterEnumerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrintingPromptService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrivacyTransitionObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrivateBrowsingChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrivateBrowsingTrackingProtectionWhitelist.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProcess.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProfileMigrator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProfileUnlocker.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProgrammingLanguage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProgressEventSink.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPrompt.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPromptFactory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPromptService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPromptService2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProperties.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProperty.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPropertyBag.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPropertyBag2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProtectedAuthThread.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProtocolHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProtocolProxyCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProtocolProxyFilter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProtocolProxyService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProtocolProxyService2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProxiedChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProxiedProtocolHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIProxyInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPushErrorReporter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPushNotifier.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIPushService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIQueryContentEventResult.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIQuotaCallbacks.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIQuotaManagerService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIQuotaRequests.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFCompositeDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFContainer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFContainerUtils.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFDelegateFactory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFInMemoryDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFInferDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFLiteral.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFNode.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFPropagatableDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFPurgeableDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFRemoteDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFResource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFXMLParser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFXMLSerializer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFXMLSink.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRDFXMLSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRandomGenerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIReadConfig.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRecoveryService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRedirectChannelRegistrar.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRedirectResultListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIReflowObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRefreshURI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRelativeFilePref.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRemoteBrowser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRemoteService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRemoteWindowContext.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRequestContext.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRequestObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRequestObserverProxy.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIResProtocolHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIResumableChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIRunnable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXAttributes.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXContentHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXDTDHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXErrorHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXLexicalHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXLocator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXMutableAttributes.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXXMLFilter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISAXXMLReader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISHContainer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISHEntry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISHTransaction.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISHistory.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISHistoryInternal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISHistoryListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISOCKSSocketInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISSLSocketControl.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISSLStatus.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISSLStatusProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISafeOutputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISaveAsCharset.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScreen.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScreenManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptError.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptLoaderObserver.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptSecurityManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptableBase64Encoder.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptableDateFormat.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptableInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptableRegion.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptableUConv.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScriptableUnescapeHTML.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScrollBoxObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIScrollable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISecCheckWrapChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISecretDecoderRing.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISecureBrowserUI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISecurityConsoleMessage.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISecurityEventSink.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISecurityInfoProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISecurityReporter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISecurityUITelemetry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISeekableStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISelection.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISelectionController.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISelectionDisplay.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISelectionListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISelectionPrivate.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISemanticUnitScanner.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISensitiveInfoHiddenURI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISerializable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISerializationHelper.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIServerSocket.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIServiceManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIServiceWorkerManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISessionStartup.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISessionStore.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISettingsService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIShellService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISimpleContentPolicy.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISimpleEnumerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISimpleStreamListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISiteSecurityService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISiteSpecificUserAgent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISliderListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISlowScriptDebug.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISocketFilter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISocketProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISocketProviderService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISocketTransport.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISocketTransportService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISound.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISpeculativeConnect.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISpeechRecognitionService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISpeechService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStandardURL.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStartupCache.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStatusReporter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStorageStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamBufferAccess.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamConverter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamConverterService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamListenerTee.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamLoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamTransportService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamingProtocolController.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStreamingProtocolService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStringBundle.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStringBundleOverride.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStringEnumerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStringStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStructuredCloneContainer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIStyleSheetService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISubstitutingProtocolHandler.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISupports.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISupportsArray.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISupportsIterators.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISupportsPrimitives.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISupportsPriority.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISyncJPAKE.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISyncStreamListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISynthVoiceRegistry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISystemProxySettings.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsISystemUpdateProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITCPSocketCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITLSServerSocket.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITXTToHTMLConv.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITabChild.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITabParent.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITabSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITableEditor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITaggingService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITelemetry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITextInputProcessor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITextInputProcessorCallback.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITextScroll.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITextServicesFilter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITextToSubURI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIThread.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIThreadInternal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIThreadManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIThreadPool.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIThreadRetargetableRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIThreadRetargetableStreamListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIThrottledInputChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITimeService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITimedChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITimer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITokenDialogs.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITokenPasswordDialogs.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIToolkitChromeRegistry.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIToolkitProfile.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIToolkitProfileService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITooltipListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITooltipTextProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITraceableChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransaction.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransactionList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransactionListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransactionManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransfer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransferable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransport.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransportProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITransportSecurityInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITreeBoxObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITreeColumns.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITreeContentView.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITreeSelection.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITreeView.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsITypeAheadFind.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIU2FToken.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUDPSocket.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUDPSocketChild.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURI.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURIClassifier.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURIContentListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURIFixup.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURILoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURIRefObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURIWithBlobImpl.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURIWithPrincipal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURIWithQuery.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURL.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURLFormatter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIURLParser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUTF8ConverterService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUUIDGenerator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUnicharInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUnicharLineInputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUnicharOutputStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUnicharStreamLoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUnicodeNormalizer.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUpdateTimerManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUploadChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUploadChannel2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUrlClassifierDBService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUrlClassifierHashCompleter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUrlClassifierPrefixSet.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUrlClassifierStreamUpdater.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUrlClassifierUtils.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUrlListManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIUserInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIVariant.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIVersionComparator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIViewSourceChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWeakCryptoOverride.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWeakReference.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserChrome.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserChrome2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserChrome3.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserChromeFocus.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserFind.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserFocus.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserPersist.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserPersistDocument.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserPersistable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserPrint.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserSetup.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebBrowserStream.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebContentConverterRegistrar.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebContentHandlerRegistrar.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebNavigation.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebNavigationInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebPageDescriptor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebProgress.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebProgressListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebProgressListener2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebSocketChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebSocketEventService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebSocketListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebVTTListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWebVTTParserWrapper.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWellKnownOpportunisticUtils.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWindowCreator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWindowCreator2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWindowDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWindowMediator.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWindowMediatorListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWindowProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWindowWatcher.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWindowlessBrowser.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWorkerDebugger.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWorkerDebuggerManager.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWritablePropertyBag.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWritablePropertyBag2.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIWyciwygChannel.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIX509Cert.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIX509CertDB.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIX509CertList.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIX509CertValidity.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXBLAccessible.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXMLHttpRequest.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXPCScriptable.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXPConnect.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXSLTProcessor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXSLTProcessorPrivate.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULAppInfo.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULBrowserWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULBuilderListener.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULOverlayProvider.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULRuntime.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULSortService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULStore.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULTemplateBuilder.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULTemplateQueryProcessor.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULTemplateResult.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULTemplateRuleFilter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIXULWindow.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIZipReader.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsIZipWriter.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsPICommandUpdater.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsPIDNSService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsPIEditorTransaction.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsPILoadGroupInternal.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsPIPlacesDatabase.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsPIPromptService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsPISocketTransportService.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsPIWindowWatcher.idl +-rw-r--r-- root/root usr/share/idl/firefox/nspluginroot.idl +-rw-r--r-- root/root usr/share/idl/firefox/nsrootidl.idl +-rw-r--r-- root/root usr/share/idl/firefox/rdfIDataSource.idl +-rw-r--r-- root/root usr/share/idl/firefox/rdfISerializer.idl +-rw-r--r-- root/root usr/share/idl/firefox/rdfITripleVisitor.idl +-rw-r--r-- root/root usr/share/idl/firefox/txIEXSLTRegExFunctions.idl +-rw-r--r-- root/root usr/share/idl/firefox/txIFunctionEvaluationContext.idl +-rw-r--r-- root/root usr/share/idl/firefox/txINodeSet.idl +-rw-r--r-- root/root usr/share/idl/firefox/txIXPathObject.idl +-rw-r--r-- root/root usr/share/idl/firefox/xpcIJSGetFactory.idl +-rw-r--r-- root/root usr/share/idl/firefox/xpcIJSModuleLoader.idl +-rw-r--r-- root/root usr/share/idl/firefox/xpcIJSWeakReference.idl +-rw-r--r-- root/root usr/share/idl/firefox/xpccomponents.idl +-rw-r--r-- root/root usr/share/idl/firefox/xpcexception.idl +-rw-r--r-- root/root usr/share/idl/firefox/xpcjsid.idl +drwxr-xr-x root/root usr/share/pixmaps/ +lrwxrwxrwx root/root usr/share/pixmaps/firefox_default48.png -> /usr/lib/firefox/browser/chrome/icons/default/default48.png diff --git a/firefox/.md5sum b/firefox/.md5sum new file mode 100644 index 0000000..332f1da --- /dev/null +++ b/firefox/.md5sum @@ -0,0 +1,3 @@ +512594d84c9aec3fb094eb4bba10e441 firefox-52.2.0esr.source.tar.xz +afe61c7760e835bd12d5dfd40af4ec84 firefox-install-dir.patch +cf6971669f70b440cb6ff8df8b2722ae firefox.desktop diff --git a/firefox/Pkgfile b/firefox/Pkgfile new file mode 100644 index 0000000..44f4eed --- /dev/null +++ b/firefox/Pkgfile @@ -0,0 +1,63 @@ +# Description: The Mozilla Firefox browser +# URL: https://www.mozilla.com/firefox/ +# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu +# Depends on: nss, autoconf-2.13, unzip, zip, libidl, gtk, gtk3, python, alsa-lib, xorg-libxt, yasm, mesa3d + +name=firefox +version=52.2.0esr +release=1 +source=(https://ftp.mozilla.org/pub/firefox/releases/$version/source/firefox-$version.source.tar.xz + firefox-install-dir.patch firefox.desktop) + +build() { + cd firefox-$version + + sed -i '/^ftfntfmt.h/ i freetype/ftfntfmt.h' config/system-headers + # stupid workaround + sed -i '2,7d' js/src/configure + patch -p1 -i $SRC/firefox-install-dir.patch + + cat <<- EOF > .mozconfig + mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-shared + mk_add_options MOZ_MAKE_FLAGS="$MAKEFLAGS -s" + ac_add_options --prefix=/usr + ac_add_options --enable-default-toolkit=cairo-gtk3 + ac_add_options --with-system-jpeg + ac_add_options --with-system-zlib + ac_add_options --with-system-png + ac_add_options --with-system-nspr + ac_add_options --with-system-nss + ac_add_options --with-system-cairo + ac_add_options --enable-system-ffi + ac_add_options --enable-system-pixman + ac_add_options --enable-system-sqlite + ac_add_options --enable-alsa + ac_add_options --with-pthreads + ac_add_options --enable-official-branding + ac_add_options --with-distribution-id=nu.crux + ac_add_options --enable-extensions=default,-gnomevfs + ac_add_options --disable-tests + ac_add_options --disable-dbus + ac_add_options --disable-debug + ac_add_options --disable-updater + ac_add_options --disable-gnomeui + ac_add_options --disable-crashreporter + ac_add_options --disable-necko-wifi + ac_add_options --disable-pulseaudio + ac_add_options --disable-gconf + ac_add_options --disable-rust +EOF + + make -f client.mk build + make -f client.mk DESTDIR=$PKG install + + mkdir -p $PKG/usr/share/pixmaps + ln -s /usr/lib/firefox/browser/chrome/icons/default/default48.png $PKG/usr/share/pixmaps/firefox_default48.png + install -D -m 0644 $SRC/firefox.desktop $PKG/usr/share/applications/firefox.desktop + # Remove crap + rm $PKG/usr/lib/firefox/browser/features/{firefox@getpocket.com.xpi,webcompat@mozilla.org.xpi} + + mkdir -p $PKG/etc/revdep.d + echo "/usr/lib/firefox" > $PKG/etc/revdep.d/firefox +} diff --git a/firefox/README b/firefox/README new file mode 100644 index 0000000..aaa1d50 --- /dev/null +++ b/firefox/README @@ -0,0 +1,3 @@ +For html5 video and h.264 support you will need to install the additional port: + +ffmpeg diff --git a/firefox/firefox-install-dir.patch b/firefox/firefox-install-dir.patch new file mode 100644 index 0000000..7f753bd --- /dev/null +++ b/firefox/firefox-install-dir.patch @@ -0,0 +1,19 @@ +diff -rupN firefox-45.0b2.orig/config/baseconfig.mk firefox-45.0b2/config/baseconfig.mk +--- firefox-45.0b2.orig/config/baseconfig.mk 2016-02-02 18:20:35.472808496 +0100 ++++ firefox-45.0b2/config/baseconfig.mk 2016-02-02 18:22:04.606017747 +0100 +@@ -2,10 +2,10 @@ + # directly in python/mozbuild/mozbuild/base.py for gmake validation. + # We thus use INCLUDED_AUTOCONF_MK to enable/disable some parts depending + # whether a normal build is happening or whether the check is running. +-includedir := $(includedir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +-idldir = $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +-installdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION) +-sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION) ++includedir := $(includedir)/$(MOZ_APP_NAME) ++idldir = $(datadir)/idl/$(MOZ_APP_NAME) ++installdir = $(libdir)/$(MOZ_APP_NAME) ++sdkdir = $(libdir)/$(MOZ_APP_NAME)-devel + ifeq (.,$(DEPTH)) + DIST = dist + else + diff --git a/firefox/firefox.desktop b/firefox/firefox.desktop new file mode 100644 index 0000000..813f693 --- /dev/null +++ b/firefox/firefox.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Name=Firefox +Comment=Browser +Exec=firefox +Icon=firefox_default48.png +Terminal=false +Type=Application +Categories=Application;Network; -- 2.26.2 From 3f582c77943139f691888e79b69f1c6c6a77618c Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Wed, 4 Oct 2017 05:08:24 +0200 Subject: [PATCH 03/16] htop: updated to 2.0.1 --- htop/.md5sum | 2 +- htop/Pkgfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htop/.md5sum b/htop/.md5sum index c3485df..8b66973 100644 --- a/htop/.md5sum +++ b/htop/.md5sum @@ -1 +1 @@ -06f76c7d644ce8ae611c9feb10439a30 htop-2.0.0.tar.gz +f75fe92b4defaa80d99109830f34b5e2 htop-2.0.1.tar.gz diff --git a/htop/Pkgfile b/htop/Pkgfile index 0693ee6..759bbba 100644 --- a/htop/Pkgfile +++ b/htop/Pkgfile @@ -7,7 +7,7 @@ # Depends on: ncurses name=htop -version=2.0.0 +version=2.0.1 release=1 source=(http://hisham.hm/htop/releases/$version/htop-$version.tar.gz) -- 2.26.2 From 2e31f8ac8ec164d78cd6c0595eb4d63ccff06b1d Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Wed, 4 Oct 2017 05:15:06 +0200 Subject: [PATCH 04/16] libtiff: updated to 4.0.8 --- libtiff/.footprint | 12 ++++++------ libtiff/.md5sum | 2 +- libtiff/Pkgfile | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libtiff/.footprint b/libtiff/.footprint index fbaf8da..0af6044 100644 --- a/libtiff/.footprint +++ b/libtiff/.footprint @@ -8,14 +8,14 @@ drwxr-xr-x root/root usr/include/ drwxr-xr-x root/root usr/lib/ -rw-r--r-- root/root usr/lib/libtiff.a -rwxr-xr-x root/root usr/lib/libtiff.la -lrwxrwxrwx root/root usr/lib/libtiff.so -> libtiff.so.5.2.4 -lrwxrwxrwx root/root usr/lib/libtiff.so.5 -> libtiff.so.5.2.4 --rwxr-xr-x root/root usr/lib/libtiff.so.5.2.4 +lrwxrwxrwx root/root usr/lib/libtiff.so -> libtiff.so.5.2.6 +lrwxrwxrwx root/root usr/lib/libtiff.so.5 -> libtiff.so.5.2.6 +-rwxr-xr-x root/root usr/lib/libtiff.so.5.2.6 -rw-r--r-- root/root usr/lib/libtiffxx.a -rwxr-xr-x root/root usr/lib/libtiffxx.la -lrwxrwxrwx root/root usr/lib/libtiffxx.so -> libtiffxx.so.5.2.4 -lrwxrwxrwx root/root usr/lib/libtiffxx.so.5 -> libtiffxx.so.5.2.4 --rwxr-xr-x root/root usr/lib/libtiffxx.so.5.2.4 +lrwxrwxrwx root/root usr/lib/libtiffxx.so -> libtiffxx.so.5.2.6 +lrwxrwxrwx root/root usr/lib/libtiffxx.so.5 -> libtiffxx.so.5.2.6 +-rwxr-xr-x root/root usr/lib/libtiffxx.so.5.2.6 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/libtiff-4.pc drwxr-xr-x root/root usr/share/ diff --git a/libtiff/.md5sum b/libtiff/.md5sum index 77b752b..d2b656f 100644 --- a/libtiff/.md5sum +++ b/libtiff/.md5sum @@ -1 +1 @@ -d1d2e940dea0b5ad435f21f03d96dd72 tiff-4.0.6.tar.gz +2a7d1c1318416ddf36d5f6fa4600069b tiff-4.0.8.tar.gz diff --git a/libtiff/Pkgfile b/libtiff/Pkgfile index 45e1dd0..a9f80ef 100644 --- a/libtiff/Pkgfile +++ b/libtiff/Pkgfile @@ -5,7 +5,7 @@ # Depends on: libjpeg-turbo, zlib name=libtiff -version=4.0.6 +version=4.0.8 release=1 source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz) -- 2.26.2 From bdbb33623c460db9a24d95782e3c197e407faddf Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Wed, 4 Oct 2017 06:08:47 +0200 Subject: [PATCH 05/16] xterm: updated to 327 --- xterm/.md5sum | 2 +- xterm/Pkgfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xterm/.md5sum b/xterm/.md5sum index 44ae546..5601cbc 100644 --- a/xterm/.md5sum +++ b/xterm/.md5sum @@ -1,2 +1,2 @@ 2bc971a1753fe57aca05fde7c005a16c configure.diff -e78a0bbc4d5fa3780917e447ae8ebc6b xterm-325.tgz +3c32e931adcad44e64e57892e75d9e02 xterm-327.tgz diff --git a/xterm/Pkgfile b/xterm/Pkgfile index e0ef730..0ffd505 100644 --- a/xterm/Pkgfile +++ b/xterm/Pkgfile @@ -6,7 +6,7 @@ # Depends on: xorg-libxaw xorg-font-alias xorg-font-misc-misc name=xterm -version=325 +version=327 release=1 source=(ftp://invisible-island.net/$name/$name-$version.tgz \ configure.diff) -- 2.26.2 From a51b94a935da9a54fd158d68320cc248d809f21b Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Wed, 4 Oct 2017 06:39:09 +0200 Subject: [PATCH 06/16] libpng: updated to 1.6.34 --- libpng/.footprint | 6 +++--- libpng/.md5sum | 4 ++-- libpng/Pkgfile | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/libpng/.footprint b/libpng/.footprint index 8e4996e..0d216e0 100644 --- a/libpng/.footprint +++ b/libpng/.footprint @@ -18,9 +18,9 @@ lrwxrwxrwx root/root usr/lib/libpng.la -> libpng16.la lrwxrwxrwx root/root usr/lib/libpng.so -> libpng16.so -rw-r--r-- root/root usr/lib/libpng16.a -rwxr-xr-x root/root usr/lib/libpng16.la -lrwxrwxrwx root/root usr/lib/libpng16.so -> libpng16.so.16.30.0 -lrwxrwxrwx root/root usr/lib/libpng16.so.16 -> libpng16.so.16.30.0 --rwxr-xr-x root/root usr/lib/libpng16.so.16.30.0 +lrwxrwxrwx root/root usr/lib/libpng16.so -> libpng16.so.16.34.0 +lrwxrwxrwx root/root usr/lib/libpng16.so.16 -> libpng16.so.16.34.0 +-rwxr-xr-x root/root usr/lib/libpng16.so.16.34.0 drwxr-xr-x root/root usr/lib/pkgconfig/ lrwxrwxrwx root/root usr/lib/pkgconfig/libpng.pc -> libpng16.pc -rw-r--r-- root/root usr/lib/pkgconfig/libpng16.pc diff --git a/libpng/.md5sum b/libpng/.md5sum index f49493f..5744708 100644 --- a/libpng/.md5sum +++ b/libpng/.md5sum @@ -1,2 +1,2 @@ -88a729d47eaf880d61a0ef90f4bd5e8f libpng-1.6.30.tar.xz -6b5a7e5006cb2878a5e02253b1232f01 libpng-apng.patch +c05b6ca7190a5e387b78657dbe5536b2 libpng-1.6.34.tar.xz +3820297122960161657a9e7db4bfcd11 libpng-apng.patch diff --git a/libpng/Pkgfile b/libpng/Pkgfile index 4e54ffa..3ddaf21 100644 --- a/libpng/Pkgfile +++ b/libpng/Pkgfile @@ -5,14 +5,14 @@ # Depends on: zlib name=libpng -version=1.6.30 +version=1.6.34 release=1 source=(http://download.sourceforge.net/$name/$name-$version.tar.xz \ $name-apng.patch) build() { cd $name-$version - patch -p0 -i $SRC/$name-apng.patch + patch -p1 -i $SRC/$name-apng.patch ./configure --prefix=/usr --disable-arm-neon make -- 2.26.2 From e1f0e23e46f34edbc6244840f3e9550ac2b20e06 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 5 Oct 2017 05:22:04 +0200 Subject: [PATCH 07/16] python: updated to 2.7.14 --- python/.footprint | 37 +++++++++++++++++++++++++++++++------ python/.md5sum | 2 +- python/Pkgfile | 2 +- 3 files changed, 33 insertions(+), 8 deletions(-) diff --git a/python/.footprint b/python/.footprint index 420cdee..bb48ad2 100644 --- a/python/.footprint +++ b/python/.footprint @@ -1440,7 +1440,7 @@ drwxr-xr-x root/root usr/lib/python2.7/json/ -rw-r--r-- root/root usr/lib/python2.7/keyword.pyc -rw-r--r-- root/root usr/lib/python2.7/keyword.pyo drwxr-xr-x root/root usr/lib/python2.7/lib-dynload/ --rw-r--r-- root/root usr/lib/python2.7/lib-dynload/Python-2.7.13-py2.7.egg-info +-rw-r--r-- root/root usr/lib/python2.7/lib-dynload/Python-2.7.14-py2.7.egg-info -rwxr-xr-x root/root usr/lib/python2.7/lib-dynload/_bisect.so -rwxr-xr-x root/root usr/lib/python2.7/lib-dynload/_bsddb.so -rwxr-xr-x root/root usr/lib/python2.7/lib-dynload/_codecs_cn.so @@ -1614,9 +1614,9 @@ drwxr-xr-x root/root usr/lib/python2.7/lib-tk/test/test_ttk/ -rw-r--r-- root/root usr/lib/python2.7/lib-tk/turtle.pyo drwxr-xr-x root/root usr/lib/python2.7/lib2to3/ -rw-r--r-- root/root usr/lib/python2.7/lib2to3/Grammar.txt --rw-r--r-- root/root usr/lib/python2.7/lib2to3/Grammar2.7.13.final.0.pickle +-rw-r--r-- root/root usr/lib/python2.7/lib2to3/Grammar2.7.14.final.0.pickle -rw-r--r-- root/root usr/lib/python2.7/lib2to3/PatternGrammar.txt --rw-r--r-- root/root usr/lib/python2.7/lib2to3/PatternGrammar2.7.13.final.0.pickle +-rw-r--r-- root/root usr/lib/python2.7/lib2to3/PatternGrammar2.7.14.final.0.pickle -rw-r--r-- root/root usr/lib/python2.7/lib2to3/__init__.py -rw-r--r-- root/root usr/lib/python2.7/lib2to3/__init__.pyc -rw-r--r-- root/root usr/lib/python2.7/lib2to3/__init__.pyo @@ -2183,6 +2183,9 @@ drwxr-xr-x root/root usr/lib/python2.7/test/ -rw-r--r-- root/root usr/lib/python2.7/test/__init__.py -rw-r--r-- root/root usr/lib/python2.7/test/__init__.pyc -rw-r--r-- root/root usr/lib/python2.7/test/__init__.pyo +-rw-r--r-- root/root usr/lib/python2.7/test/__main__.py +-rw-r--r-- root/root usr/lib/python2.7/test/__main__.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/__main__.pyo -rw-r--r-- root/root usr/lib/python2.7/test/_mock_backport.py -rw-r--r-- root/root usr/lib/python2.7/test/_mock_backport.pyc -rw-r--r-- root/root usr/lib/python2.7/test/_mock_backport.pyo @@ -2221,6 +2224,9 @@ drwxr-xr-x root/root usr/lib/python2.7/test/audiodata/ -rw-r--r-- root/root usr/lib/python2.7/test/badsyntax_future8.py -rw-r--r-- root/root usr/lib/python2.7/test/badsyntax_future9.py -rw-r--r-- root/root usr/lib/python2.7/test/badsyntax_nocaret.py +-rwxr-xr-x root/root usr/lib/python2.7/test/bisect.py +-rw-r--r-- root/root usr/lib/python2.7/test/bisect.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/bisect.pyo drwxr-xr-x root/root usr/lib/python2.7/test/capath/ -rw-r--r-- root/root usr/lib/python2.7/test/capath/0e4015b9.0 -rw-r--r-- root/root usr/lib/python2.7/test/capath/4e1295a3.0 @@ -2470,6 +2476,9 @@ drwxr-xr-x root/root usr/lib/python2.7/test/imghdrdata/ -rw-r--r-- root/root usr/lib/python2.7/test/mp_fork_bomb.py -rw-r--r-- root/root usr/lib/python2.7/test/mp_fork_bomb.pyc -rw-r--r-- root/root usr/lib/python2.7/test/mp_fork_bomb.pyo +-rw-r--r-- root/root usr/lib/python2.7/test/multibytecodec_support.py +-rw-r--r-- root/root usr/lib/python2.7/test/multibytecodec_support.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/multibytecodec_support.pyo -rw-r--r-- root/root usr/lib/python2.7/test/nokia.pem -rw-r--r-- root/root usr/lib/python2.7/test/nullbytecert.pem -rw-r--r-- root/root usr/lib/python2.7/test/nullcert.pem (EMPTY) @@ -2495,6 +2504,9 @@ drwxr-xr-x root/root usr/lib/python2.7/test/imghdrdata/ -rwxr-xr-x root/root usr/lib/python2.7/test/pystone.py -rw-r--r-- root/root usr/lib/python2.7/test/pystone.pyc -rw-r--r-- root/root usr/lib/python2.7/test/pystone.pyo +-rw-r--r-- root/root usr/lib/python2.7/test/pythoninfo.py +-rw-r--r-- root/root usr/lib/python2.7/test/pythoninfo.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/pythoninfo.pyo -rw-r--r-- root/root usr/lib/python2.7/test/randv2_32.pck -rw-r--r-- root/root usr/lib/python2.7/test/randv2_64.pck -rw-r--r-- root/root usr/lib/python2.7/test/randv3.pck @@ -2548,6 +2560,13 @@ drwxr-xr-x root/root usr/lib/python2.7/test/subprocessdata/ -rw-r--r-- root/root usr/lib/python2.7/test/subprocessdata/sigchild_ignore.py -rw-r--r-- root/root usr/lib/python2.7/test/subprocessdata/sigchild_ignore.pyc -rw-r--r-- root/root usr/lib/python2.7/test/subprocessdata/sigchild_ignore.pyo +drwxr-xr-x root/root usr/lib/python2.7/test/support/ +-rw-r--r-- root/root usr/lib/python2.7/test/support/__init__.py +-rw-r--r-- root/root usr/lib/python2.7/test/support/__init__.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/support/__init__.pyo +-rw-r--r-- root/root usr/lib/python2.7/test/support/script_helper.py +-rw-r--r-- root/root usr/lib/python2.7/test/support/script_helper.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/support/script_helper.pyo -rw-r--r-- root/root usr/lib/python2.7/test/symlink_support.py -rw-r--r-- root/root usr/lib/python2.7/test/symlink_support.pyc -rw-r--r-- root/root usr/lib/python2.7/test/symlink_support.pyo @@ -3093,6 +3112,9 @@ drwxr-xr-x root/root usr/lib/python2.7/test/subprocessdata/ -rw-r--r-- root/root usr/lib/python2.7/test/test_import.py -rw-r--r-- root/root usr/lib/python2.7/test/test_import.pyc -rw-r--r-- root/root usr/lib/python2.7/test/test_import.pyo +-rw-r--r-- root/root usr/lib/python2.7/test/test_import_magic.py +-rw-r--r-- root/root usr/lib/python2.7/test/test_import_magic.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/test_import_magic.pyo -rw-r--r-- root/root usr/lib/python2.7/test/test_importhooks.py -rw-r--r-- root/root usr/lib/python2.7/test/test_importhooks.pyc -rw-r--r-- root/root usr/lib/python2.7/test/test_importhooks.pyo @@ -3222,9 +3244,6 @@ drwxr-xr-x root/root usr/lib/python2.7/test/subprocessdata/ -rw-r--r-- root/root usr/lib/python2.7/test/test_multibytecodec.py -rw-r--r-- root/root usr/lib/python2.7/test/test_multibytecodec.pyc -rw-r--r-- root/root usr/lib/python2.7/test/test_multibytecodec.pyo --rw-r--r-- root/root usr/lib/python2.7/test/test_multibytecodec_support.py --rw-r--r-- root/root usr/lib/python2.7/test/test_multibytecodec_support.pyc --rw-r--r-- root/root usr/lib/python2.7/test/test_multibytecodec_support.pyo -rw-r--r-- root/root usr/lib/python2.7/test/test_multifile.py -rw-r--r-- root/root usr/lib/python2.7/test/test_multifile.pyc -rw-r--r-- root/root usr/lib/python2.7/test/test_multifile.pyo @@ -3393,6 +3412,9 @@ drwxr-xr-x root/root usr/lib/python2.7/test/subprocessdata/ -rw-r--r-- root/root usr/lib/python2.7/test/test_readline.py -rw-r--r-- root/root usr/lib/python2.7/test/test_readline.pyc -rw-r--r-- root/root usr/lib/python2.7/test/test_readline.pyo +-rw-r--r-- root/root usr/lib/python2.7/test/test_regrtest.py +-rw-r--r-- root/root usr/lib/python2.7/test/test_regrtest.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/test_regrtest.pyo -rw-r--r-- root/root usr/lib/python2.7/test/test_repr.py -rw-r--r-- root/root usr/lib/python2.7/test/test_repr.pyc -rw-r--r-- root/root usr/lib/python2.7/test/test_repr.pyo @@ -3570,6 +3592,9 @@ drwxr-xr-x root/root usr/lib/python2.7/test/subprocessdata/ -rw-r--r-- root/root usr/lib/python2.7/test/test_tempfile.py -rw-r--r-- root/root usr/lib/python2.7/test/test_tempfile.pyc -rw-r--r-- root/root usr/lib/python2.7/test/test_tempfile.pyo +-rw-r--r-- root/root usr/lib/python2.7/test/test_test_support.py +-rw-r--r-- root/root usr/lib/python2.7/test/test_test_support.pyc +-rw-r--r-- root/root usr/lib/python2.7/test/test_test_support.pyo -rw-r--r-- root/root usr/lib/python2.7/test/test_textwrap.py -rw-r--r-- root/root usr/lib/python2.7/test/test_textwrap.pyc -rw-r--r-- root/root usr/lib/python2.7/test/test_textwrap.pyo diff --git a/python/.md5sum b/python/.md5sum index 3ce940c..7bc5f5b 100644 --- a/python/.md5sum +++ b/python/.md5sum @@ -1,2 +1,2 @@ -53b43534153bb2a0363f08bae8b9d990 Python-2.7.13.tar.xz +1f6db41ad91d9eb0a6f0c769b8613c5b Python-2.7.14.tar.xz b83c1b0519955f1815ad9219e3aa7c3f pyconfig.h diff --git a/python/Pkgfile b/python/Pkgfile index 758f343..3ed1976 100644 --- a/python/Pkgfile +++ b/python/Pkgfile @@ -5,7 +5,7 @@ # Depends on: db gdbm openssl bzip2 zlib sqlite3 name=python -version=2.7.13 +version=2.7.14 release=1 source=(http://www.python.org/ftp/$name/$version/Python-$version.tar.xz \ pyconfig.h) -- 2.26.2 From c205fb98ef151ec53d77868a8726c9f1f3e4e279 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 5 Oct 2017 05:41:01 +0200 Subject: [PATCH 08/16] xterm: updated to 330 --- xterm/.footprint | 19 ++++++++++--------- xterm/.md5sum | 3 +-- xterm/Pkgfile | 10 ++++++---- xterm/configure.diff | 12 ------------ 4 files changed, 17 insertions(+), 27 deletions(-) delete mode 100644 xterm/configure.diff diff --git a/xterm/.footprint b/xterm/.footprint index 3318898..7bd6882 100644 --- a/xterm/.footprint +++ b/xterm/.footprint @@ -4,16 +4,17 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/resize -rwxr-xr-x root/root usr/bin/uxterm -rwxr-xr-x root/root usr/bin/xterm -drwxr-xr-x root/root usr/lib/ -drwxr-xr-x root/root usr/lib/X11/ -drwxr-xr-x root/root usr/lib/X11/app-defaults/ --rw-r--r-- root/root usr/lib/X11/app-defaults/KOI8RXTerm --rw-r--r-- root/root usr/lib/X11/app-defaults/KOI8RXTerm-color --rw-r--r-- root/root usr/lib/X11/app-defaults/UXTerm --rw-r--r-- root/root usr/lib/X11/app-defaults/UXTerm-color --rw-r--r-- root/root usr/lib/X11/app-defaults/XTerm --rw-r--r-- root/root usr/lib/X11/app-defaults/XTerm-color drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/X11/ +drwxr-xr-x root/root usr/share/X11/app-defaults/ +-rw-r--r-- root/root usr/share/X11/app-defaults/KOI8RXTerm +-rw-r--r-- root/root usr/share/X11/app-defaults/KOI8RXTerm-color +-rw-r--r-- root/root usr/share/X11/app-defaults/UXTerm +-rw-r--r-- root/root usr/share/X11/app-defaults/UXTerm-color +-rw-r--r-- root/root usr/share/X11/app-defaults/XTerm +-rw-r--r-- root/root usr/share/X11/app-defaults/XTerm-color +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/xterm.desktop drwxr-xr-x root/root usr/share/man/ drwxr-xr-x root/root usr/share/man/man1/ -rw-r--r-- root/root usr/share/man/man1/koi8rxterm.1.gz diff --git a/xterm/.md5sum b/xterm/.md5sum index 5601cbc..b57ac2e 100644 --- a/xterm/.md5sum +++ b/xterm/.md5sum @@ -1,2 +1 @@ -2bc971a1753fe57aca05fde7c005a16c configure.diff -3c32e931adcad44e64e57892e75d9e02 xterm-327.tgz +9a6db7974aa4ccbb50eabebf72618467 xterm-330.tgz diff --git a/xterm/Pkgfile b/xterm/Pkgfile index 0ffd505..489933c 100644 --- a/xterm/Pkgfile +++ b/xterm/Pkgfile @@ -6,20 +6,22 @@ # Depends on: xorg-libxaw xorg-font-alias xorg-font-misc-misc name=xterm -version=327 +version=330 release=1 -source=(ftp://invisible-island.net/$name/$name-$version.tgz \ - configure.diff) +source=(ftp://invisible-island.net/$name/$name-$version.tgz) build() { cd $name-$version - [ -z "$BASH_VERSION" ] && patch -p0 -i $SRC/configure.diff ./configure --prefix=/usr \ + --with-app-defaults=/usr/share/X11/app-defaults/ \ --disable-nls \ --enable-256-color \ --enable-wide-chars make make install DESTDIR=$PKG + + install -d $PKG/usr/share/applications + install -m 0644 xterm.desktop $PKG/usr/share/applications } diff --git a/xterm/configure.diff b/xterm/configure.diff deleted file mode 100644 index 327e5ec..0000000 --- a/xterm/configure.diff +++ /dev/null @@ -1,12 +0,0 @@ -Fix a stupid bashism ---- configure.orig 2006-05-02 02:01:12.637169936 +0200 -+++ configure 2006-05-02 02:01:30.861399432 +0200 -@@ -5217,7 +5217,7 @@ if test "${with_app_defaults+set}" = set - withval="$with_app_defaults" - - else -- withval="${appsdir-'\$(exec_prefix)/lib/X11/app-defaults'}" -+ withval="${appsdir-'\$\(exec_prefix\)/lib/X11/app-defaults'}" - fi; - case ".$withval" in #(vi - .\$\(*\)*|.\'*\'*) #(vi -- 2.26.2 From 063f7e70c2f4ea4253b65aa62efdb78d719982ed Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 5 Oct 2017 05:49:08 +0200 Subject: [PATCH 09/16] libxslt: updated to 1.1.29 --- libxslt/.footprint | 6 +++--- libxslt/.md5sum | 3 +-- libxslt/CVE-2015-7995.patch | 29 ----------------------------- libxslt/Pkgfile | 11 +++++------ 4 files changed, 9 insertions(+), 40 deletions(-) delete mode 100644 libxslt/CVE-2015-7995.patch diff --git a/libxslt/.footprint b/libxslt/.footprint index 6117e7e..b2cfcc0 100644 --- a/libxslt/.footprint +++ b/libxslt/.footprint @@ -38,9 +38,9 @@ lrwxrwxrwx root/root usr/lib/libexslt.so.0 -> libexslt.so.0.8.17 drwxr-xr-x root/root usr/lib/libxslt-plugins/ -rw-r--r-- root/root usr/lib/libxslt.a -rwxr-xr-x root/root usr/lib/libxslt.la -lrwxrwxrwx root/root usr/lib/libxslt.so -> libxslt.so.1.1.28 -lrwxrwxrwx root/root usr/lib/libxslt.so.1 -> libxslt.so.1.1.28 --rwxr-xr-x root/root usr/lib/libxslt.so.1.1.28 +lrwxrwxrwx root/root usr/lib/libxslt.so -> libxslt.so.1.1.29 +lrwxrwxrwx root/root usr/lib/libxslt.so.1 -> libxslt.so.1.1.29 +-rwxr-xr-x root/root usr/lib/libxslt.so.1.1.29 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/libexslt.pc -rw-r--r-- root/root usr/lib/pkgconfig/libxslt.pc diff --git a/libxslt/.md5sum b/libxslt/.md5sum index 16ce056..e4f716c 100644 --- a/libxslt/.md5sum +++ b/libxslt/.md5sum @@ -1,2 +1 @@ -b97b695cbe4171f8cb10df41f652aba5 CVE-2015-7995.patch -9667bf6f9310b957254fdcf6596600b7 libxslt-1.1.28.tar.gz +a129d3c44c022de3b9dcf6d6f288d72e libxslt-1.1.29.tar.gz diff --git a/libxslt/CVE-2015-7995.patch b/libxslt/CVE-2015-7995.patch deleted file mode 100644 index fbcd7ea..0000000 --- a/libxslt/CVE-2015-7995.patch +++ /dev/null @@ -1,29 +0,0 @@ -From 7ca19df892ca22d9314e95d59ce2abdeff46b617 Mon Sep 17 00:00:00 2001 -From: Daniel Veillard -Date: Thu, 29 Oct 2015 19:33:23 +0800 -Subject: Fix for type confusion in preprocessing attributes - -CVE-2015-7995 http://www.openwall.com/lists/oss-security/2015/10/27/10 -We need to check that the parent node is an element before dereferencing -its namespace ---- - libxslt/preproc.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/libxslt/preproc.c b/libxslt/preproc.c -index 0eb80a0..7f69325 100644 ---- a/libxslt/preproc.c -+++ b/libxslt/preproc.c -@@ -2249,7 +2249,8 @@ xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr inst) { - } else if (IS_XSLT_NAME(inst, "attribute")) { - xmlNodePtr parent = inst->parent; - -- if ((parent == NULL) || (parent->ns == NULL) || -+ if ((parent == NULL) || -+ (parent->type != XML_ELEMENT_NODE) || (parent->ns == NULL) || - ((parent->ns != inst->ns) && - (!xmlStrEqual(parent->ns->href, inst->ns->href))) || - (!xmlStrEqual(parent->name, BAD_CAST "attribute-set"))) { --- -cgit v0.11.2 - diff --git a/libxslt/Pkgfile b/libxslt/Pkgfile index 14c5db1..4760898 100644 --- a/libxslt/Pkgfile +++ b/libxslt/Pkgfile @@ -6,20 +6,19 @@ # Depends on: libxml2 zlib xz name=libxslt -version=1.1.28 -release=3 -source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.gz - CVE-2015-7995.patch) +version=1.1.29 +release=1 +source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.gz) build() { cd $name-$version - patch -p1 -i $SRC/CVE-2015-7995.patch - ./configure --prefix=/usr \ --without-python \ --without-crypto \ --build=aarch64-unknown-linux-gnueabi + + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool make make DESTDIR=$PKG install -- 2.26.2 From 1557bb0f5159b8f6977b742401c59cb1a22d34bf Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 5 Oct 2017 05:52:37 +0200 Subject: [PATCH 10/16] speex: updated to 1.2.0 --- speex/.footprint | 7 ++++--- speex/.md5sum | 2 +- speex/Pkgfile | 6 +++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/speex/.footprint b/speex/.footprint index deb9e64..05e4d8c 100644 --- a/speex/.footprint +++ b/speex/.footprint @@ -9,10 +9,11 @@ drwxr-xr-x root/root usr/include/speex/ -rw-r--r-- root/root usr/include/speex/speex_stereo.h -rw-r--r-- root/root usr/include/speex/speex_types.h drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libspeex.a -rwxr-xr-x root/root usr/lib/libspeex.la -lrwxrwxrwx root/root usr/lib/libspeex.so -> libspeex.so.1.5.0 -lrwxrwxrwx root/root usr/lib/libspeex.so.1 -> libspeex.so.1.5.0 --rwxr-xr-x root/root usr/lib/libspeex.so.1.5.0 +lrwxrwxrwx root/root usr/lib/libspeex.so -> libspeex.so.1.5.1 +lrwxrwxrwx root/root usr/lib/libspeex.so.1 -> libspeex.so.1.5.1 +-rwxr-xr-x root/root usr/lib/libspeex.so.1.5.1 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/speex.pc drwxr-xr-x root/root usr/share/ diff --git a/speex/.md5sum b/speex/.md5sum index 64ff66d..529360d 100644 --- a/speex/.md5sum +++ b/speex/.md5sum @@ -1 +1 @@ -6ae7db3bab01e1d4b86bacfa8ca33e81 speex-1.2rc2.tar.gz +8ab7bb2589110dfaf0ed7fa7757dc49c speex-1.2.0.tar.gz diff --git a/speex/Pkgfile b/speex/Pkgfile index 536accd..215a5c4 100644 --- a/speex/Pkgfile +++ b/speex/Pkgfile @@ -6,7 +6,7 @@ # Depends on: libogg name=speex -version=1.2rc2 +version=1.2.0 release=1 source=(http://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz) @@ -14,8 +14,8 @@ build() { cd $name-$version ./configure --prefix=/usr \ - --mandir=$PKG/usr/man \ - --disable-static \ + --enable-epic-48k \ + --enable-binaries \ --build=aarch64-unknown-linux-gnueabi sed -i -e "/^SUBDIRS = /s/doc //" Makefile -- 2.26.2 From f03896636bc37d0c732cfc32529f074e93013a41 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 5 Oct 2017 05:57:37 +0200 Subject: [PATCH 11/16] gobject-introspection: updated to 1.52.1 --- gobject-introspection/.footprint | 1 + gobject-introspection/.md5sum | 2 +- gobject-introspection/Pkgfile | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gobject-introspection/.footprint b/gobject-introspection/.footprint index 9ae66b6..07405d5 100644 --- a/gobject-introspection/.footprint +++ b/gobject-introspection/.footprint @@ -3,6 +3,7 @@ drwxr-xr-x root/root usr/bin/ -rwxr-xr-x root/root usr/bin/g-ir-annotation-tool -rwxr-xr-x root/root usr/bin/g-ir-compiler -rwxr-xr-x root/root usr/bin/g-ir-generate +-rwxr-xr-x root/root usr/bin/g-ir-inspect -rwxr-xr-x root/root usr/bin/g-ir-scanner drwxr-xr-x root/root usr/include/ drwxr-xr-x root/root usr/include/gobject-introspection-1.0/ diff --git a/gobject-introspection/.md5sum b/gobject-introspection/.md5sum index 1481c70..39b3f51 100644 --- a/gobject-introspection/.md5sum +++ b/gobject-introspection/.md5sum @@ -1 +1 @@ -01301fa9019667d48e927353e08bc218 gobject-introspection-1.48.0.tar.xz +34157073991f9eeb0ed953351b65eb61 gobject-introspection-1.52.1.tar.xz diff --git a/gobject-introspection/Pkgfile b/gobject-introspection/Pkgfile index 85122a4..676dbb1 100644 --- a/gobject-introspection/Pkgfile +++ b/gobject-introspection/Pkgfile @@ -6,7 +6,7 @@ # Depends on: python glib name=gobject-introspection -version=1.48.0 +version=1.52.1 release=1 source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version::4}/$name-$version.tar.xz) -- 2.26.2 From b0ff9bb572aaca2702da80c4a5fbb9a7589cdff1 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Wed, 20 Dec 2017 06:51:24 +0100 Subject: [PATCH 12/16] libtiff: updated to 4.0.9 --- libtiff/.footprint | 12 ++++++------ libtiff/.md5sum | 2 +- libtiff/Pkgfile | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/libtiff/.footprint b/libtiff/.footprint index 0af6044..8eece24 100644 --- a/libtiff/.footprint +++ b/libtiff/.footprint @@ -8,14 +8,14 @@ drwxr-xr-x root/root usr/include/ drwxr-xr-x root/root usr/lib/ -rw-r--r-- root/root usr/lib/libtiff.a -rwxr-xr-x root/root usr/lib/libtiff.la -lrwxrwxrwx root/root usr/lib/libtiff.so -> libtiff.so.5.2.6 -lrwxrwxrwx root/root usr/lib/libtiff.so.5 -> libtiff.so.5.2.6 --rwxr-xr-x root/root usr/lib/libtiff.so.5.2.6 +lrwxrwxrwx root/root usr/lib/libtiff.so -> libtiff.so.5.3.0 +lrwxrwxrwx root/root usr/lib/libtiff.so.5 -> libtiff.so.5.3.0 +-rwxr-xr-x root/root usr/lib/libtiff.so.5.3.0 -rw-r--r-- root/root usr/lib/libtiffxx.a -rwxr-xr-x root/root usr/lib/libtiffxx.la -lrwxrwxrwx root/root usr/lib/libtiffxx.so -> libtiffxx.so.5.2.6 -lrwxrwxrwx root/root usr/lib/libtiffxx.so.5 -> libtiffxx.so.5.2.6 --rwxr-xr-x root/root usr/lib/libtiffxx.so.5.2.6 +lrwxrwxrwx root/root usr/lib/libtiffxx.so -> libtiffxx.so.5.3.0 +lrwxrwxrwx root/root usr/lib/libtiffxx.so.5 -> libtiffxx.so.5.3.0 +-rwxr-xr-x root/root usr/lib/libtiffxx.so.5.3.0 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/libtiff-4.pc drwxr-xr-x root/root usr/share/ diff --git a/libtiff/.md5sum b/libtiff/.md5sum index d2b656f..b38addc 100644 --- a/libtiff/.md5sum +++ b/libtiff/.md5sum @@ -1 +1 @@ -2a7d1c1318416ddf36d5f6fa4600069b tiff-4.0.8.tar.gz +54bad211279cc93eb4fca31ba9bfdc79 tiff-4.0.9.tar.gz diff --git a/libtiff/Pkgfile b/libtiff/Pkgfile index a9f80ef..00a0147 100644 --- a/libtiff/Pkgfile +++ b/libtiff/Pkgfile @@ -5,7 +5,7 @@ # Depends on: libjpeg-turbo, zlib name=libtiff -version=4.0.8 +version=4.0.9 release=1 source=(http://download.osgeo.org/libtiff/tiff-$version.tar.gz) -- 2.26.2 From c50fd504586937f285118c5bc383ad022f94b057 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 1 Feb 2018 01:31:45 +0100 Subject: [PATCH 13/16] xterm: updated to 331 --- xterm/.footprint | 32 -------------------------------- xterm/.md5sum | 1 - xterm/Pkgfile | 2 +- 3 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 xterm/.footprint delete mode 100644 xterm/.md5sum diff --git a/xterm/.footprint b/xterm/.footprint deleted file mode 100644 index 7bd6882..0000000 --- a/xterm/.footprint +++ /dev/null @@ -1,32 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/koi8rxterm --rwxr-xr-x root/root usr/bin/resize --rwxr-xr-x root/root usr/bin/uxterm --rwxr-xr-x root/root usr/bin/xterm -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/X11/ -drwxr-xr-x root/root usr/share/X11/app-defaults/ --rw-r--r-- root/root usr/share/X11/app-defaults/KOI8RXTerm --rw-r--r-- root/root usr/share/X11/app-defaults/KOI8RXTerm-color --rw-r--r-- root/root usr/share/X11/app-defaults/UXTerm --rw-r--r-- root/root usr/share/X11/app-defaults/UXTerm-color --rw-r--r-- root/root usr/share/X11/app-defaults/XTerm --rw-r--r-- root/root usr/share/X11/app-defaults/XTerm-color -drwxr-xr-x root/root usr/share/applications/ --rw-r--r-- root/root usr/share/applications/xterm.desktop -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/koi8rxterm.1.gz --rw-r--r-- root/root usr/share/man/man1/resize.1.gz --rw-r--r-- root/root usr/share/man/man1/uxterm.1.gz --rw-r--r-- root/root usr/share/man/man1/xterm.1.gz -drwxr-xr-x root/root usr/share/pixmaps/ --rw-r--r-- root/root usr/share/pixmaps/filled-xterm_32x32.xpm --rw-r--r-- root/root usr/share/pixmaps/filled-xterm_48x48.xpm --rw-r--r-- root/root usr/share/pixmaps/mini.xterm_32x32.xpm --rw-r--r-- root/root usr/share/pixmaps/mini.xterm_48x48.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm-color_32x32.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm-color_48x48.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm_32x32.xpm --rw-r--r-- root/root usr/share/pixmaps/xterm_48x48.xpm diff --git a/xterm/.md5sum b/xterm/.md5sum deleted file mode 100644 index b57ac2e..0000000 --- a/xterm/.md5sum +++ /dev/null @@ -1 +0,0 @@ -9a6db7974aa4ccbb50eabebf72618467 xterm-330.tgz diff --git a/xterm/Pkgfile b/xterm/Pkgfile index 489933c..491e1d8 100644 --- a/xterm/Pkgfile +++ b/xterm/Pkgfile @@ -6,7 +6,7 @@ # Depends on: xorg-libxaw xorg-font-alias xorg-font-misc-misc name=xterm -version=330 +version=331 release=1 source=(ftp://invisible-island.net/$name/$name-$version.tgz) -- 2.26.2 From 33f239475a95261bf13cc96f9eb5cedc29539aea Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Sun, 11 Mar 2018 23:21:57 +0100 Subject: [PATCH 14/16] python: updated to 2.7.14-2 --- python/.md5sum | 1 + python/CVE-2018-1000030.patch | 258 ++++++++++++++++++++++++++++++++++ python/Pkgfile | 6 +- 3 files changed, 264 insertions(+), 1 deletion(-) create mode 100644 python/CVE-2018-1000030.patch diff --git a/python/.md5sum b/python/.md5sum index 7bc5f5b..be19c82 100644 --- a/python/.md5sum +++ b/python/.md5sum @@ -1,2 +1,3 @@ +ff653e9e002ca0e3d4a828988e52edd3 CVE-2018-1000030.patch 1f6db41ad91d9eb0a6f0c769b8613c5b Python-2.7.14.tar.xz b83c1b0519955f1815ad9219e3aa7c3f pyconfig.h diff --git a/python/CVE-2018-1000030.patch b/python/CVE-2018-1000030.patch new file mode 100644 index 0000000..efec476 --- /dev/null +++ b/python/CVE-2018-1000030.patch @@ -0,0 +1,258 @@ +--- a/Lib/test/test_file2k.py 2018-02-16 17:49:45.180147747 -0500 ++++ b/Lib/test/test_file2k.py 2018-02-16 17:51:06.870149602 -0500 +@@ -652,6 +652,33 @@ class FileThreadingTests(unittest.TestCa + self.f.writelines('') + self._test_close_open_io(io_func) + ++ def test_iteration_torture(self): ++ # bpo-31530 ++ with open(self.filename, "wb") as fp: ++ for i in xrange(2**20): ++ fp.write(b"0"*50 + b"\n") ++ with open(self.filename, "rb") as f: ++ def it(): ++ for l in f: ++ pass ++ self._run_workers(it, 10) ++ ++ def test_iteration_seek(self): ++ # bpo-31530: Crash when concurrently seek and iterate over a file. ++ with open(self.filename, "wb") as fp: ++ for i in xrange(10000): ++ fp.write(b"0"*50 + b"\n") ++ with open(self.filename, "rb") as f: ++ it = iter([1] + [0]*10) # one thread reads, others seek ++ def iterate(): ++ if next(it): ++ for l in f: ++ pass ++ else: ++ for i in xrange(100): ++ f.seek(i*100, 0) ++ self._run_workers(iterate, 10) ++ + + @unittest.skipUnless(os.name == 'posix', 'test requires a posix system.') + class TestFileSignalEINTR(unittest.TestCase): +--- a/Objects/fileobject.c 2018-02-16 17:49:45.304147750 -0500 ++++ b/Objects/fileobject.c 2018-02-16 17:51:06.872149603 -0500 +@@ -430,7 +430,7 @@ close_the_file(PyFileObject *f) + if (f->ob_refcnt > 0) { + PyErr_SetString(PyExc_IOError, + "close() called during concurrent " +- "operation on the same file object."); ++ "operation on the same file object"); + } else { + /* This should not happen unless someone is + * carelessly playing with the PyFileObject +@@ -438,7 +438,7 @@ close_the_file(PyFileObject *f) + * pointer. */ + PyErr_SetString(PyExc_SystemError, + "PyFileObject locking error in " +- "destructor (refcnt <= 0 at close)."); ++ "destructor (refcnt <= 0 at close)"); + } + return NULL; + } +@@ -604,7 +604,12 @@ err_iterbuffered(void) + return NULL; + } + +-static void drop_readahead(PyFileObject *); ++static void ++drop_file_readahead(PyFileObject *f) ++{ ++ PyMem_FREE(f->f_buf); ++ f->f_buf = NULL; ++} + + /* Methods */ + +@@ -627,7 +632,7 @@ file_dealloc(PyFileObject *f) + Py_XDECREF(f->f_mode); + Py_XDECREF(f->f_encoding); + Py_XDECREF(f->f_errors); +- drop_readahead(f); ++ drop_file_readahead(f); + Py_TYPE(f)->tp_free((PyObject *)f); + } + +@@ -762,7 +767,7 @@ file_seek(PyFileObject *f, PyObject *arg + + if (f->f_fp == NULL) + return err_closed(); +- drop_readahead(f); ++ drop_file_readahead(f); + whence = 0; + if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &whence)) + return NULL; +@@ -2221,12 +2226,16 @@ static PyGetSetDef file_getsetlist[] = { + {0}, + }; + ++typedef struct { ++ char *buf, *bufptr, *bufend; ++} readaheadbuffer; ++ + static void +-drop_readahead(PyFileObject *f) ++drop_readaheadbuffer(readaheadbuffer *rab) + { +- if (f->f_buf != NULL) { +- PyMem_Free(f->f_buf); +- f->f_buf = NULL; ++ if (rab->buf != NULL) { ++ PyMem_FREE(rab->buf); ++ rab->buf = NULL; + } + } + +@@ -2234,35 +2243,34 @@ drop_readahead(PyFileObject *f) + (unless at EOF) and no more than bufsize. Returns negative value on + error, will set MemoryError if bufsize bytes cannot be allocated. */ + static int +-readahead(PyFileObject *f, Py_ssize_t bufsize) ++readahead(PyFileObject *f, readaheadbuffer *rab, Py_ssize_t bufsize) + { + Py_ssize_t chunksize; + +- if (f->f_buf != NULL) { +- if( (f->f_bufend - f->f_bufptr) >= 1) ++ if (rab->buf != NULL) { ++ if ((rab->bufend - rab->bufptr) >= 1) + return 0; + else +- drop_readahead(f); ++ drop_readaheadbuffer(rab); + } +- if ((f->f_buf = (char *)PyMem_Malloc(bufsize)) == NULL) { ++ if ((rab->buf = PyMem_MALLOC(bufsize)) == NULL) { + PyErr_NoMemory(); + return -1; + } + FILE_BEGIN_ALLOW_THREADS(f) + errno = 0; +- chunksize = Py_UniversalNewlineFread( +- f->f_buf, bufsize, f->f_fp, (PyObject *)f); ++ chunksize = Py_UniversalNewlineFread(rab->buf, bufsize, f->f_fp, (PyObject *)f); + FILE_END_ALLOW_THREADS(f) + if (chunksize == 0) { + if (ferror(f->f_fp)) { + PyErr_SetFromErrno(PyExc_IOError); + clearerr(f->f_fp); +- drop_readahead(f); ++ drop_readaheadbuffer(rab); + return -1; + } + } +- f->f_bufptr = f->f_buf; +- f->f_bufend = f->f_buf + chunksize; ++ rab->bufptr = rab->buf; ++ rab->bufend = rab->buf + chunksize; + return 0; + } + +@@ -2272,45 +2280,43 @@ readahead(PyFileObject *f, Py_ssize_t bu + logarithmic buffer growth to about 50 even when reading a 1gb line. */ + + static PyStringObject * +-readahead_get_line_skip(PyFileObject *f, Py_ssize_t skip, Py_ssize_t bufsize) ++readahead_get_line_skip(PyFileObject *f, readaheadbuffer *rab, Py_ssize_t skip, Py_ssize_t bufsize) + { + PyStringObject* s; + char *bufptr; + char *buf; + Py_ssize_t len; + +- if (f->f_buf == NULL) +- if (readahead(f, bufsize) < 0) ++ if (rab->buf == NULL) ++ if (readahead(f, rab, bufsize) < 0) + return NULL; + +- len = f->f_bufend - f->f_bufptr; ++ len = rab->bufend - rab->bufptr; + if (len == 0) +- return (PyStringObject *) +- PyString_FromStringAndSize(NULL, skip); +- bufptr = (char *)memchr(f->f_bufptr, '\n', len); ++ return (PyStringObject *)PyString_FromStringAndSize(NULL, skip); ++ bufptr = (char *)memchr(rab->bufptr, '\n', len); + if (bufptr != NULL) { + bufptr++; /* Count the '\n' */ +- len = bufptr - f->f_bufptr; +- s = (PyStringObject *) +- PyString_FromStringAndSize(NULL, skip + len); ++ len = bufptr - rab->bufptr; ++ s = (PyStringObject *)PyString_FromStringAndSize(NULL, skip + len); + if (s == NULL) + return NULL; +- memcpy(PyString_AS_STRING(s) + skip, f->f_bufptr, len); +- f->f_bufptr = bufptr; +- if (bufptr == f->f_bufend) +- drop_readahead(f); ++ memcpy(PyString_AS_STRING(s) + skip, rab->bufptr, len); ++ rab->bufptr = bufptr; ++ if (bufptr == rab->bufend) ++ drop_readaheadbuffer(rab); + } else { +- bufptr = f->f_bufptr; +- buf = f->f_buf; +- f->f_buf = NULL; /* Force new readahead buffer */ ++ bufptr = rab->bufptr; ++ buf = rab->buf; ++ rab->buf = NULL; /* Force new readahead buffer */ + assert(len <= PY_SSIZE_T_MAX - skip); +- s = readahead_get_line_skip(f, skip + len, bufsize + (bufsize>>2)); ++ s = readahead_get_line_skip(f, rab, skip + len, bufsize + (bufsize>>2)); + if (s == NULL) { +- PyMem_Free(buf); ++ PyMem_FREE(buf); + return NULL; + } + memcpy(PyString_AS_STRING(s) + skip, bufptr, len); +- PyMem_Free(buf); ++ PyMem_FREE(buf); + } + return s; + } +@@ -2328,7 +2334,30 @@ file_iternext(PyFileObject *f) + if (!f->readable) + return err_mode("reading"); + +- l = readahead_get_line_skip(f, 0, READAHEAD_BUFSIZE); ++ { ++ /* ++ Multiple threads can enter this method while the GIL is released ++ during file read and wreak havoc on the file object's readahead ++ buffer. To avoid dealing with cross-thread coordination issues, we ++ cache the file buffer state locally and only set it back on the file ++ object when we're done. ++ */ ++ readaheadbuffer rab = {f->f_buf, f->f_bufptr, f->f_bufend}; ++ f->f_buf = NULL; ++ l = readahead_get_line_skip(f, &rab, 0, READAHEAD_BUFSIZE); ++ /* ++ Make sure the file's internal read buffer is cleared out. This will ++ only do anything if some other thread interleaved with us during ++ readahead. We want to drop any changeling buffer, so we don't leak ++ memory. We may lose data, but that's what you get for reading the same ++ file object in multiple threads. ++ */ ++ drop_file_readahead(f); ++ f->f_buf = rab.buf; ++ f->f_bufptr = rab.bufptr; ++ f->f_bufend = rab.bufend; ++ } ++ + if (l == NULL || PyString_GET_SIZE(l) == 0) { + Py_XDECREF(l); + return NULL; +@@ -2692,7 +2721,7 @@ int PyObject_AsFileDescriptor(PyObject * + } + else { + PyErr_SetString(PyExc_TypeError, +- "argument must be an int, or have a fileno() method."); ++ "argument must be an int, or have a fileno() method"); + return -1; + } diff --git a/python/Pkgfile b/python/Pkgfile index 3ed1976..0cd7e23 100644 --- a/python/Pkgfile +++ b/python/Pkgfile @@ -6,12 +6,16 @@ name=python version=2.7.14 -release=1 +release=2 source=(http://www.python.org/ftp/$name/$version/Python-$version.tar.xz \ + CVE-2018-1000030.patch pyconfig.h) build () { cd Python-$version + # fix for CVE-2018-1000030 + # see https://bugs.python.org/issue31530 + patch -p1 -i $SRC/CVE-2018-1000030.patch # set OPT to the python default without -O3 # our CFLAGS are used as well -- 2.26.2 From d10a49a5832a4f5f09ee8aeed3b4645afc56f2f2 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Mon, 23 Apr 2018 06:04:41 +0200 Subject: [PATCH 15/16] htop: updated to 2.1.0 --- htop/.md5sum | 2 +- htop/Pkgfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/htop/.md5sum b/htop/.md5sum index 8b66973..55cc5d3 100644 --- a/htop/.md5sum +++ b/htop/.md5sum @@ -1 +1 @@ -f75fe92b4defaa80d99109830f34b5e2 htop-2.0.1.tar.gz +f262b66ad6c194782f4d3a80627e84c8 htop-2.1.0.tar.gz diff --git a/htop/Pkgfile b/htop/Pkgfile index 759bbba..f85d1da 100644 --- a/htop/Pkgfile +++ b/htop/Pkgfile @@ -7,7 +7,7 @@ # Depends on: ncurses name=htop -version=2.0.1 +version=2.1.0 release=1 source=(http://hisham.hm/htop/releases/$version/htop-$version.tar.gz) -- 2.26.2 From 7238ba65b908cc69e2c219b16e828ef1c6ab44c6 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Tue, 24 Apr 2018 02:08:04 +0200 Subject: [PATCH 16/16] xterm: updated to 332 --- xterm/.footprint | 32 ++++++++++++++++++++++++++++++++ xterm/.md5sum | 1 + xterm/Pkgfile | 2 +- 3 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 xterm/.footprint create mode 100644 xterm/.md5sum diff --git a/xterm/.footprint b/xterm/.footprint new file mode 100644 index 0000000..7bd6882 --- /dev/null +++ b/xterm/.footprint @@ -0,0 +1,32 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/koi8rxterm +-rwxr-xr-x root/root usr/bin/resize +-rwxr-xr-x root/root usr/bin/uxterm +-rwxr-xr-x root/root usr/bin/xterm +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/X11/ +drwxr-xr-x root/root usr/share/X11/app-defaults/ +-rw-r--r-- root/root usr/share/X11/app-defaults/KOI8RXTerm +-rw-r--r-- root/root usr/share/X11/app-defaults/KOI8RXTerm-color +-rw-r--r-- root/root usr/share/X11/app-defaults/UXTerm +-rw-r--r-- root/root usr/share/X11/app-defaults/UXTerm-color +-rw-r--r-- root/root usr/share/X11/app-defaults/XTerm +-rw-r--r-- root/root usr/share/X11/app-defaults/XTerm-color +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/xterm.desktop +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/koi8rxterm.1.gz +-rw-r--r-- root/root usr/share/man/man1/resize.1.gz +-rw-r--r-- root/root usr/share/man/man1/uxterm.1.gz +-rw-r--r-- root/root usr/share/man/man1/xterm.1.gz +drwxr-xr-x root/root usr/share/pixmaps/ +-rw-r--r-- root/root usr/share/pixmaps/filled-xterm_32x32.xpm +-rw-r--r-- root/root usr/share/pixmaps/filled-xterm_48x48.xpm +-rw-r--r-- root/root usr/share/pixmaps/mini.xterm_32x32.xpm +-rw-r--r-- root/root usr/share/pixmaps/mini.xterm_48x48.xpm +-rw-r--r-- root/root usr/share/pixmaps/xterm-color_32x32.xpm +-rw-r--r-- root/root usr/share/pixmaps/xterm-color_48x48.xpm +-rw-r--r-- root/root usr/share/pixmaps/xterm_32x32.xpm +-rw-r--r-- root/root usr/share/pixmaps/xterm_48x48.xpm diff --git a/xterm/.md5sum b/xterm/.md5sum new file mode 100644 index 0000000..4ffb83c --- /dev/null +++ b/xterm/.md5sum @@ -0,0 +1 @@ +4bbc75ecc68d100547662958cda346ae xterm-332.tgz diff --git a/xterm/Pkgfile b/xterm/Pkgfile index 491e1d8..3326806 100644 --- a/xterm/Pkgfile +++ b/xterm/Pkgfile @@ -6,7 +6,7 @@ # Depends on: xorg-libxaw xorg-font-alias xorg-font-misc-misc name=xterm -version=331 +version=332 release=1 source=(ftp://invisible-island.net/$name/$name-$version.tgz) -- 2.26.2