Searched defs:save_as (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/ppapi/cpp/trusted/
H A Dfile_chooser_trusted.cc34 bool save_as,
37 save_as_(save_as),
31 FileChooser_Trusted(const InstanceHandle& instance, PP_FileChooserMode_Dev mode, const Var& accept_types, bool save_as, const std::string& suggested_file_name) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_file_chooser_trusted_thunk.cc22 PP_Bool save_as,
30 save_as,
36 PP_Bool save_as,
45 save_as,
21 ShowWithoutUserGesture_0_5(PP_Resource chooser, PP_Bool save_as, struct PP_Var suggested_file_name, struct PP_CompletionCallback callback) argument
35 ShowWithoutUserGesture(PP_Resource chooser, PP_Bool save_as, struct PP_Var suggested_file_name, struct PP_ArrayOutput output, struct PP_CompletionCallback callback) argument
/external/chromium_org/content/renderer/pepper/
H A Dpepper_file_chooser_host.cc127 bool save_as,
141 if (save_as) {
125 OnShow( ppapi::host::HostMessageContext* context, bool save_as, bool open_multiple, const std::string& suggested_file_name, const std::vector<std::string>& accept_mime_types) argument
/external/chromium_org/content/shell/browser/
H A Dshell_download_manager_delegate.cc170 OPENFILENAME save_as; local
171 ZeroMemory(&save_as, sizeof(save_as));
172 save_as.lStructSize = sizeof(OPENFILENAME);
173 save_as.hwndOwner = item->GetWebContents()->GetNativeView()->
175 save_as.lpstrFile = file_name;
176 save_as.nMaxFile = arraysize(file_name);
182 save_as.lpstrInitialDir = directory.c_str();
183 save_as.Flags = OFN_OVERWRITEPROMPT | OFN_EXPLORER | OFN_ENABLESIZING |
186 if (GetSaveFileName(&save_as))
[all...]
/external/chromium_org/ppapi/proxy/
H A Dfile_chooser_resource.cc41 PP_Bool save_as,
45 int32_t result = ShowInternal(save_as, suggested_file_name, callback);
68 PP_Bool save_as,
71 return ShowInternal(save_as, suggested_file_name, callback);
132 PP_Bool save_as,
145 PP_ToBool(save_as),
40 ShowWithoutUserGesture( PP_Bool save_as, PP_Var suggested_file_name, const PP_ArrayOutput& output, scoped_refptr<TrackedCallback> callback) argument
67 ShowWithoutUserGesture0_5( PP_Bool save_as, PP_Var suggested_file_name, scoped_refptr<TrackedCallback> callback) argument
131 ShowInternal( PP_Bool save_as, const PP_Var& suggested_file_name, scoped_refptr<TrackedCallback> callback) argument
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_file_helper.cc222 bool save_as,
226 if (it != saved_files_.end() && !save_as) {
220 Save(const std::string& url, const std::string& content, bool save_as, const SaveCallback& saveCallback, const SaveCallback& cancelCallback) argument
H A Ddevtools_ui_bindings.cc478 bool save_as) {
479 file_helper_->Save(url, content, save_as,
476 SaveToFile(const std::string& url, const std::string& content, bool save_as) argument

Completed in 2550 milliseconds