tree: cdc45253b7e979dbe02ca6bc6b5158bfea08239e [path history] [tgz]
  1. docs/
  2. BUILD.gn
  3. DEPS
  4. global_indexed_db.cc
  5. global_indexed_db.h
  6. idb_any.cc
  7. idb_any.h
  8. idb_cursor.cc
  9. idb_cursor.h
  10. idb_cursor.idl
  11. idb_cursor_with_value.cc
  12. idb_cursor_with_value.h
  13. idb_cursor_with_value.idl
  14. idb_database.cc
  15. idb_database.h
  16. idb_database.idl
  17. idb_database_callbacks.cc
  18. idb_database_callbacks.h
  19. idb_database_info.idl
  20. idb_event_dispatcher.cc
  21. idb_event_dispatcher.h
  22. idb_factory.cc
  23. idb_factory.h
  24. idb_factory.idl
  25. idb_factory_test.cc
  26. idb_index.cc
  27. idb_index.h
  28. idb_index.idl
  29. idb_index_parameters.idl
  30. idb_key.cc
  31. idb_key.h
  32. idb_key_path.cc
  33. idb_key_path.h
  34. idb_key_path_test.cc
  35. idb_key_range.cc
  36. idb_key_range.h
  37. idb_key_range.idl
  38. idb_metadata.cc
  39. idb_metadata.h
  40. idb_object_store.cc
  41. idb_object_store.h
  42. idb_object_store.idl
  43. idb_object_store_parameters.idl
  44. idb_observation.cc
  45. idb_observation.h
  46. idb_observation.idl
  47. idb_observer.cc
  48. idb_observer.h
  49. idb_observer.idl
  50. idb_observer_changes.cc
  51. idb_observer_changes.h
  52. idb_observer_changes.idl
  53. idb_observer_init.idl
  54. idb_open_db_request.cc
  55. idb_open_db_request.h
  56. idb_open_db_request.idl
  57. idb_request.cc
  58. idb_request.h
  59. idb_request.idl
  60. idb_request_loader.cc
  61. idb_request_loader.h
  62. idb_request_queue_item.cc
  63. idb_request_queue_item.h
  64. idb_request_test.cc
  65. idb_test_helper.cc
  66. idb_test_helper.h
  67. idb_tracing.h
  68. idb_transaction.cc
  69. idb_transaction.h
  70. idb_transaction.idl
  71. idb_transaction_test.cc
  72. idb_value.cc
  73. idb_value.h
  74. idb_value_wrapping.cc
  75. idb_value_wrapping.h
  76. idb_value_wrapping_test.cc
  77. idb_version_change_event.cc
  78. idb_version_change_event.h
  79. idb_version_change_event.idl
  80. idb_version_change_event_init.idl
  81. indexed_db.h
  82. indexed_db_blink.typemap
  83. indexed_db_blink_mojom_traits.cc
  84. indexed_db_blink_mojom_traits.h
  85. indexed_db_callbacks_impl.cc
  86. indexed_db_callbacks_impl.h
  87. indexed_db_client.cc
  88. indexed_db_client.h
  89. indexed_db_database_callbacks_impl.cc
  90. indexed_db_database_callbacks_impl.h
  91. indexed_db_dispatcher.cc
  92. indexed_db_dispatcher.h
  93. indexed_db_names.json5
  94. inspector_indexed_db_agent.cc
  95. inspector_indexed_db_agent.h
  96. mock_web_idb_callbacks.cc
  97. mock_web_idb_callbacks.h
  98. mock_web_idb_database.cc
  99. mock_web_idb_database.h
  100. mock_web_idb_factory.cc
  101. mock_web_idb_factory.h
  102. OWNERS
  103. README.md
  104. web_idb_callbacks_impl.cc
  105. web_idb_callbacks_impl.h
  106. web_idb_cursor.h
  107. web_idb_cursor_impl.cc
  108. web_idb_cursor_impl.h
  109. web_idb_cursor_impl_unittest.cc
  110. web_idb_database.h
  111. web_idb_database_callbacks_impl.cc
  112. web_idb_database_callbacks_impl.h
  113. web_idb_database_impl.cc
  114. web_idb_database_impl.h
  115. web_idb_database_impl_unittest.cc
  116. web_idb_factory.h
  117. web_idb_factory_impl.cc
  118. web_idb_factory_impl.h
  119. window_indexed_database.idl
  120. worker_global_scope_indexed_database.idl
third_party/blink/renderer/modules/indexeddb/README.md

IndexedDB

IndexedDB is a browser storage mechanism that can efficiently store and retrieve large amounts of structured data with a subset of the ACID guarantees that are generally associated with relational databases. IndexedDB enjoys wide cross-browser adoption.

The IndexedDB specification is maintained on GitHub. The specification's issue tracker is the recommended forum for discussing new feature proposals and changes that would apply to all browsers implementing IndexedDB.

Mozilla‘s IndexedDB documentation is a solid introduction to IndexedDB for Web developers. Learning the IndexedDB concepts is also a good first step in understanding Blink’s IndexedDB implementation.

Documentation

Please add documents below as you write it.

Design Docs

Please complete the list below with new or existing design docs.

Obsoleted Design Docs

These documents are no longer current, but are still the best documentation we have in their area.