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

Side by Side Diff: ui/base/dialogs/select_file_dialog_mac.mm

Issue 10831025: mac: Remove now-unneeded includes of cocoa_protocols.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
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 "ui/base/dialogs/select_file_dialog.h" 5 #include "ui/base/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"
16 #include "base/mac/bundle_locations.h" 16 #include "base/mac/bundle_locations.h"
17 #import "base/mac/cocoa_protocols.h"
18 #include "base/mac/foundation_util.h" 17 #include "base/mac/foundation_util.h"
19 #include "base/mac/mac_util.h" 18 #include "base/mac/mac_util.h"
20 #include "base/mac/scoped_cftyperef.h" 19 #include "base/mac/scoped_cftyperef.h"
21 #import "base/memory/scoped_nsobject.h" 20 #import "base/memory/scoped_nsobject.h"
22 #include "base/sys_string_conversions.h" 21 #include "base/sys_string_conversions.h"
23 #include "base/threading/thread_restrictions.h" 22 #include "base/threading/thread_restrictions.h"
24 #include "grit/ui_strings.h" 23 #include "grit/ui_strings.h"
25 #import "ui/base/cocoa/nib_loading.h" 24 #import "ui/base/cocoa/nib_loading.h"
26 #include "ui/base/l10n/l10n_util_mac.h" 25 #include "ui/base/l10n/l10n_util_mac.h"
27 26
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 432
434 namespace ui { 433 namespace ui {
435 434
436 SelectFileDialog* CreateMacSelectFileDialog( 435 SelectFileDialog* CreateMacSelectFileDialog(
437 SelectFileDialog::Listener* listener, 436 SelectFileDialog::Listener* listener,
438 SelectFilePolicy* policy) { 437 SelectFilePolicy* policy) {
439 return new SelectFileDialogImpl(listener, policy); 438 return new SelectFileDialogImpl(listener, policy);
440 } 439 }
441 440
442 } // namespace ui 441 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698