Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Side by Side Diff: chrome/browser/ui/libgtkui/select_file_dialog_impl_kde.cc

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 <stddef.h> 5 #include <stddef.h>
6 #include <X11/Xlib.h> 6 #include <X11/Xlib.h>
7 7
8 #include <memory> 8 #include <memory>
9 #include <set> 9 #include <set>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/ptr_util.h"
16 #include "base/nix/mime_util_xdg.h" 17 #include "base/nix/mime_util_xdg.h"
17 #include "base/nix/xdg_util.h" 18 #include "base/nix/xdg_util.h"
18 #include "base/process/launch.h" 19 #include "base/process/launch.h"
19 #include "base/strings/string_number_conversions.h" 20 #include "base/strings/string_number_conversions.h"
20 #include "base/strings/string_split.h" 21 #include "base/strings/string_split.h"
21 #include "base/strings/string_util.h" 22 #include "base/strings/string_util.h"
22 #include "base/strings/utf_string_conversions.h" 23 #include "base/strings/utf_string_conversions.h"
23 #include "base/threading/thread_restrictions.h" 24 #include "base/threading/thread_restrictions.h"
24 #include "chrome/browser/ui/libgtkui/select_file_dialog_impl.h" 25 #include "chrome/browser/ui/libgtkui/select_file_dialog_impl.h"
25 #include "chrome/grit/generated_resources.h" 26 #include "chrome/grit/generated_resources.h"
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 } 519 }
519 520
520 if (filenames_fp.empty()) { 521 if (filenames_fp.empty()) {
521 FileNotSelected(params); 522 FileNotSelected(params);
522 return; 523 return;
523 } 524 }
524 MultiFilesSelected(filenames_fp, params); 525 MultiFilesSelected(filenames_fp, params);
525 } 526 }
526 527
527 } // namespace libgtkui 528 } // namespace libgtkui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698