Searched refs:shouldGenerateFile (Results 1 - 3 of 3) sorted by relevance

/external/webkit/WebCore/platform/network/
H A DFormData.h35 FormDataElement(const String& filename, bool shouldGenerateFile) : m_type(encodedFile), m_filename(filename), m_shouldGenerateFile(shouldGenerateFile) { } argument
75 void appendFile(const String& filename, bool shouldGenerateFile = false);
H A DFormData.cpp128 void FormData::appendFile(const String& filename, bool shouldGenerateFile) argument
130 m_elements.append(FormDataElement(filename, shouldGenerateFile));
/external/webkit/WebCore/html/
H A DHTMLFormElement.cpp232 bool shouldGenerateFile = false; local
242 shouldGenerateFile = page->chrome()->client()->shouldReplaceWithGeneratedFileForUpload(path, generatedFileName);
243 if (shouldGenerateFile)
269 result->appendFile(value.file()->path(), shouldGenerateFile);

Completed in 27 milliseconds