OLD | NEW |
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 "ui/base/dialogs/select_file_dialog.h" | 5 #include "ui/shell_dialogs/select_file_dialog.h" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 #include <CoreServices/CoreServices.h> | 8 #include <CoreServices/CoreServices.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <set> | 11 #include <set> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/file_util.h" | 14 #include "base/file_util.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 | 415 |
416 namespace ui { | 416 namespace ui { |
417 | 417 |
418 SelectFileDialog* CreateMacSelectFileDialog( | 418 SelectFileDialog* CreateMacSelectFileDialog( |
419 SelectFileDialog::Listener* listener, | 419 SelectFileDialog::Listener* listener, |
420 SelectFilePolicy* policy) { | 420 SelectFilePolicy* policy) { |
421 return new SelectFileDialogImpl(listener, policy); | 421 return new SelectFileDialogImpl(listener, policy); |
422 } | 422 } |
423 | 423 |
424 } // namespace ui | 424 } // namespace ui |
OLD | NEW |