summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/android/FileChooserAndroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/android/FileChooserAndroid.cpp')
-rw-r--r--WebCore/platform/android/FileChooserAndroid.cpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/WebCore/platform/android/FileChooserAndroid.cpp b/WebCore/platform/android/FileChooserAndroid.cpp
index e613115..2169cc3 100644
--- a/WebCore/platform/android/FileChooserAndroid.cpp
+++ b/WebCore/platform/android/FileChooserAndroid.cpp
@@ -24,30 +24,11 @@
namespace WebCore {
-FileChooser::FileChooser(FileChooserClient* client, const String& initialFilename)
-{
- m_client = client;
- if (initialFilename.length() == 0)
- m_filename = fileButtonNoFileSelectedLabel();
- else
- m_filename = initialFilename;
-}
-
-FileChooser::~FileChooser()
-{
-}
-
-void FileChooser::openFileChooser(Document* doc)
-{
- // FIXME: NEED TO OPEN A FILE CHOOSER OF SOME SORT!!
- // When it's chosen, set m_filename, call chooseFile(m_filename) and call chooseIcon(m_filename)
-}
-
String FileChooser::basenameForWidth(const Font& font, int width) const
{
// FIXME: This could be a lot faster, but assuming the data will not often be
// much longer than the provided width, this may be fast enough.
- String output = m_filename.copy();
+ String output = m_filenames[0].copy();
while (font.width(TextRun(output.impl())) > width && output.length() > 4) {
output = output.replace(output.length() - 4, 4, String("..."));
}