Index: sky/framework/inspector/indexeddb-agent.sky |
diff --git a/sky/framework/inspector/indexeddb-agent.sky b/sky/framework/inspector/indexeddb-agent.sky |
deleted file mode 100644 |
index 5d37993dfc8453c7889792c9f9cd320ec9877549..0000000000000000000000000000000000000000 |
--- a/sky/framework/inspector/indexeddb-agent.sky |
+++ /dev/null |
@@ -1,14 +0,0 @@ |
-<script> |
-class IndexedDB { |
- constructor() { |
- Object.preventExtensions(this); |
- } |
- |
- // Needed to make the inspector not throw an exception. |
- requestDatabaseNames() { |
- return { "databaseNames": [] }; |
- } |
-} |
- |
-module.exports = IndexedDB; |
-</script> |