Home | History | Annotate | only in /external/chromium_org/third_party/leveldatabase
Up to higher level directory
NameDateSize
chromium_logger.h11-Dec-20132.4K
env_chromium.cc11-Dec-201328.4K
env_chromium.h11-Dec-20136.7K
env_chromium_unittest.cc11-Dec-20133.2K
env_idb.h11-Dec-2013308
leveldatabase.gyp11-Dec-20139.5K
leveldatabase.target.darwin-arm.mk11-Dec-20137.9K
leveldatabase.target.darwin-mips.mk11-Dec-20137.9K
leveldatabase.target.darwin-x86.mk11-Dec-20137.9K
leveldatabase.target.linux-arm.mk11-Dec-20137.9K
leveldatabase.target.linux-mips.mk11-Dec-20137.9K
leveldatabase.target.linux-x86.mk11-Dec-20137.9K
OWNERS11-Dec-2013125
port/11-Dec-2013
README.chromium11-Dec-20131,001
src/11-Dec-2013

README.chromium

      1 Name: LevelDB: A Fast Persistent Key-Value Store
      2 Short Name: leveldb
      3 URL: http://code.google.com/p/leveldb/
      4 Version: r75
      5 License: New BSD
      6 License File: src/LICENSE
      7 Security Critical: yes
      8 
      9 Description:
     10 Alternative to SQLite used as the backend for IndexedDB and internally by the
     11 FileSystem API implementation and others.
     12 
     13 Local Additions:
     14 * gyp file for building in chromium
     15 * port/port_chromium.{h,cc} and env_chromium.{h,cc} provide chromium
     16   implementations of primitives used by leveldb.  E.g. threading, file handling,
     17   etc. env_chromium.h allows re-use of some utility functions.
     18 * chromium_logger.h was copied from src/util/posix_logger.h and updated to use
     19   chrome primitives in place of some posix primitives
     20 * env_idb.h allows IndexedDB to emit uma stats under separate histograms from
     21   other LevelDB consumers.
     22 * ChromiumEnv wraps low-level I/O calls that may be interrupted with a
     23   HANDLE_EINTR macro that retries the call.
     24 * TRACE macros/thread name for chrome://tracing diagnostics
     25