1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 13:58:49 +00:00

Increase size of data over which we write the data to disk rather than keep it around in memory

This commit is contained in:
Sandra
2023-04-12 07:12:24 +03:00
committed by roytam1
parent 42723b1636
commit af613ef24e
+1 -1
View File
@@ -37,7 +37,7 @@ protected:
enum {
// The size of data over which we write the data to disk rather than
// keep it around in memory.
kLargeDatasetSize = 1000000 // 1 million bytes
kLargeDatasetSize = 4194304 // 4 Megabytes
};
nsresult WriteCache(nsISupports* aData, uint32_t aDataLen );