Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1901)

Unified Diff: native_client_sdk/src/examples/demo/nacl_io_demo/example.js

Issue 1062463004: [NaCl SDK] nacl_io: Fix use-after-free bug in html5fs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use const std::string& Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/examples/demo/nacl_io_demo/example.js
diff --git a/native_client_sdk/src/examples/demo/nacl_io_demo/example.js b/native_client_sdk/src/examples/demo/nacl_io_demo/example.js
index 128bcd037013552b9f62742984e069d5f908498e..7cb83c15b65a1563f16b4c0f8f2b5cca811224ed 100644
--- a/native_client_sdk/src/examples/demo/nacl_io_demo/example.js
+++ b/native_client_sdk/src/examples/demo/nacl_io_demo/example.js
@@ -12,7 +12,7 @@ function $(id) {
// Called by the common.js module.
function domContentLoaded(name, tc, config, width, height) {
- navigator.webkitPersistentStorage.requestQuota(1024 * 1024,
+ navigator.webkitPersistentStorage.requestQuota(5 * 1024 * 1024,
function(bytes) {
common.updateStatus(
'Allocated ' + bytes + ' bytes of persistant storage.');
« no previous file with comments | « no previous file | native_client_sdk/src/libraries/nacl_io/html5fs/html5_fs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698