diff options
author | tsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-17 18:16:05 +0000 |
---|---|---|
committer | tsepez@chromium.org <tsepez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-17 18:16:05 +0000 |
commit | a20d375ca8e9240d5ff1784d284680a359f8817d (patch) | |
tree | f877d5882cdf5d454edb2f2c8fb3b0f097ed109a /ppapi/proxy | |
parent | b9d7b97986a91cfccce854f37b84151bf77ae7ca (diff) | |
download | chromium_src-a20d375ca8e9240d5ff1784d284680a359f8817d.zip chromium_src-a20d375ca8e9240d5ff1784d284680a359f8817d.tar.gz chromium_src-a20d375ca8e9240d5ff1784d284680a359f8817d.tar.bz2 |
Fix typo where dialog box save_as parameter was dropped, introduced as part of refactoring at r146737.
BUG=109814
Review URL: https://chromiumcodereview.appspot.com/10792022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147048 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy')
-rw-r--r-- | ppapi/proxy/file_chooser_resource.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/proxy/file_chooser_resource.cc b/ppapi/proxy/file_chooser_resource.cc index c7c7669..e368f73 100644 --- a/ppapi/proxy/file_chooser_resource.cc +++ b/ppapi/proxy/file_chooser_resource.cc @@ -40,7 +40,7 @@ int32_t FileChooserResource::ShowWithoutUserGesture( PP_Var suggested_file_name, const PP_ArrayOutput& output, scoped_refptr<TrackedCallback> callback) { - int32_t result = ShowInternal(PP_FALSE, suggested_file_name, callback); + int32_t result = ShowInternal(save_as, suggested_file_name, callback); if (result == PP_OK_COMPLETIONPENDING) output_.set_pp_array_output(output); return result; |