OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <set> | 5 #include <set> |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
12 #include "base/message_loop/message_loop_proxy.h" | 12 #include "base/message_loop/message_loop_proxy.h" |
13 #include "base/nix/mime_util_xdg.h" | 13 #include "base/nix/mime_util_xdg.h" |
14 #include "base/nix/xdg_util.h" | 14 #include "base/nix/xdg_util.h" |
15 #include "base/process_util.h" | 15 #include "base/process_util.h" |
16 #include "base/string_number_conversions.h" | 16 #include "base/strings/string_number_conversions.h" |
17 #include "base/string_util.h" | 17 #include "base/strings/string_util.h" |
18 #include "base/strings/utf_string_conversions.h" | 18 #include "base/strings/utf_string_conversions.h" |
19 #include "base/threading/thread_restrictions.h" | 19 #include "base/threading/thread_restrictions.h" |
20 #include "base/threading/worker_pool.h" | 20 #include "base/threading/worker_pool.h" |
21 #include "grit/ui_strings.h" | 21 #include "grit/ui_strings.h" |
22 #include "ui/base/l10n/l10n_util.h" | 22 #include "ui/base/l10n/l10n_util.h" |
23 #include "ui/shell_dialogs/gtk/select_file_dialog_impl.h" | 23 #include "ui/shell_dialogs/gtk/select_file_dialog_impl.h" |
24 | 24 |
25 // These conflict with base/tracked_objects.h, so need to come last. | 25 // These conflict with base/tracked_objects.h, so need to come last. |
26 #include <gdk/gdkx.h> | 26 #include <gdk/gdkx.h> |
27 #include <gtk/gtk.h> | 27 #include <gtk/gtk.h> |
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 // static | 472 // static |
473 SelectFileDialogImpl* SelectFileDialogImpl::NewSelectFileDialogImplKDE( | 473 SelectFileDialogImpl* SelectFileDialogImpl::NewSelectFileDialogImplKDE( |
474 Listener* listener, | 474 Listener* listener, |
475 ui::SelectFilePolicy* policy, | 475 ui::SelectFilePolicy* policy, |
476 base::nix::DesktopEnvironment desktop) { | 476 base::nix::DesktopEnvironment desktop) { |
477 return new SelectFileDialogImplKDE(listener, policy, desktop); | 477 return new SelectFileDialogImplKDE(listener, policy, desktop); |
478 } | 478 } |
479 | 479 |
480 } // namespace ui | 480 } // namespace ui |
481 | 481 |
OLD | NEW |