diff options
author | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-25 05:08:45 +0000 |
---|---|---|
committer | zelidrag@chromium.org <zelidrag@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-25 05:08:45 +0000 |
commit | 906625821f97a508d76810fba7b9641335f68b51 (patch) | |
tree | 4c477d7cc2bf16d1a19a24687d825bf9d1f0c9b3 /chrome/renderer/resources/extension_process_bindings.js | |
parent | 554abd90c658eb93fb078f3daca2a34b58291747 (diff) | |
download | chromium_src-906625821f97a508d76810fba7b9641335f68b51.zip chromium_src-906625821f97a508d76810fba7b9641335f68b51.tar.gz chromium_src-906625821f97a508d76810fba7b9641335f68b51.tar.bz2 |
Merged already reviewed CLs for r/o zip support in ChromeOS file browser:
Re-landing http://codereview.chromium.org/7457001:
Adding support for mount point different from removable
devices to MountLibrary
(work in progress..have to add GetMountPoints support)
tested on ChromeOS with these three patches:
http://gerrit.chromium.org/gerrit/#change,4447
http://gerrit.chromium.org/gerrit/#change,4449
http://gerrit.chromium.org/gerrit/#change,4544
http://codereview.chromium.org/7471039/:
UI for mounting/unmounting archive files.
BUG=chromium-os:17673, chromium-os:17783
TEST=Made sure mounting devices still works and that MountCompleted event gets through to file_browser_event_router (checking ui and chrome logs for mount completed entries)
TBR=tbarzic, dgozman
Review URL: http://codereview.chromium.org/7488044
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93838 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/resources/extension_process_bindings.js')
-rw-r--r-- | chrome/renderer/resources/extension_process_bindings.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/renderer/resources/extension_process_bindings.js b/chrome/renderer/resources/extension_process_bindings.js index 741d2fd..98e31cb 100644 --- a/chrome/renderer/resources/extension_process_bindings.js +++ b/chrome/renderer/resources/extension_process_bindings.js @@ -77,6 +77,8 @@ var chrome = chrome || {}; throw new Error(message); } else if (!schemas[i].optional) { + console.log(chromeHidden.JSON.stringify(args)); + console.log(chromeHidden.JSON.stringify(schemas)); throw new Error("Parameter " + (i + 1) + " is required."); } } |