| OLD | NEW |
| 1 Name: LevelDB: A Fast Persistent Key-Value Store | 1 Name: LevelDB: A Fast Persistent Key-Value Store |
| 2 Short Name: leveldb | 2 Short Name: leveldb |
| 3 URL: https://github.com/google/leveldb.git | 3 URL: https://github.com/google/leveldb.git |
| 4 Version: unknown | 4 Version: 1.20 |
| 5 License: New BSD | 5 License: New BSD |
| 6 License File: src/LICENSE | 6 License File: src/LICENSE |
| 7 Security Critical: yes | 7 Security Critical: yes |
| 8 | 8 |
| 9 Description: | 9 Description: |
| 10 Alternative to SQLite used as the backend for IndexedDB and internally by the | 10 Alternative to SQLite used as the backend for IndexedDB and internally by the |
| 11 FileSystem API implementation and others. | 11 FileSystem API implementation and others. |
| 12 | 12 |
| 13 Currently using (not yet released) manifest reuse feature for all platforms | 13 Currently using (not yet released) manifest reuse feature for all platforms |
| 14 except Chrome OS. | 14 except Chrome OS. |
| 15 | 15 |
| 16 Local Additions: | 16 Local Additions: |
| 17 * gyp file for building in chromium | 17 * gyp file for building in chromium |
| 18 * port/port_chromium.{h,cc} and env_chromium.{h,cc} provide chromium | 18 * port/port_chromium.{h,cc} and env_chromium.{h,cc} provide chromium |
| 19 implementations of primitives used by leveldb. E.g. threading, file handling, | 19 implementations of primitives used by leveldb. E.g. threading, file handling, |
| 20 etc. env_chromium.h allows re-use of some utility functions. | 20 etc. env_chromium.h allows re-use of some utility functions. |
| 21 * chromium_logger.h was copied from src/util/posix_logger.h and updated to use | 21 * chromium_logger.h was copied from src/util/posix_logger.h and updated to use |
| 22 chrome primitives in place of some posix primitives | 22 chrome primitives in place of some posix primitives |
| 23 * Logging of uma statistics. Can be overridden by derived class to redirect to | 23 * Logging of uma statistics. Can be overridden by derived class to redirect to |
| 24 different histogram. | 24 different histogram. |
| 25 * TRACE macros/thread name for chrome://tracing diagnostics | 25 * TRACE macros/thread name for chrome://tracing diagnostics |
| 26 * Handle in-process exclusive file locks, based on src/util/env_posix.cc | 26 * Handle in-process exclusive file locks, based on src/util/env_posix.cc |
| 27 * Unit tests for the Chromium environment. | 27 * Unit tests for the Chromium environment. |
| 28 * db_bench is built as leveldb_bench in Chromium. | 28 * db_bench is built as leveldb_bench in Chromium. |
| OLD | NEW |