[email protected] | e8c62b9 | 2013-01-16 23:08:27 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "select_file_dialog_android.h" | ||||
6 | |||||
7 | #include "base/android/jni_android.h" | ||||
[email protected] | e8c62b9 | 2013-01-16 23:08:27 | [diff] [blame] | 8 | #include "base/android/jni_array.h" |
[email protected] | d778e042 | 2013-03-06 18:10:22 | [diff] [blame] | 9 | #include "base/android/jni_string.h" |
[email protected] | e8c62b9 | 2013-01-16 23:08:27 | [diff] [blame] | 10 | #include "base/android/scoped_java_ref.h" |
11 | #include "base/logging.h" | ||||
[email protected] | d778e042 | 2013-03-06 18:10:22 | [diff] [blame] | 12 | #include "base/strings/string_split.h" |
[email protected] | 3b3a3064 | 2013-06-11 19:48:38 | [diff] [blame] | 13 | #include "base/strings/string_util.h" |
[email protected] | c7057fbe | 2013-06-07 18:54:01 | [diff] [blame] | 14 | #include "base/strings/utf_string_conversions.h" |
[email protected] | e8c62b9 | 2013-01-16 23:08:27 | [diff] [blame] | 15 | #include "jni/SelectFileDialog_jni.h" |
[email protected] | f7c4c27 | 2013-10-31 07:36:00 | [diff] [blame] | 16 | #include "ui/base/android/window_android.h" |
[email protected] | e8c62b9 | 2013-01-16 23:08:27 | [diff] [blame] | 17 | |
18 | namespace ui { | ||||
19 | |||||
20 | // static | ||||
21 | SelectFileDialogImpl* SelectFileDialogImpl::Create(Listener* listener, | ||||
[email protected] |