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

Side by Side Diff: chrome/browser/views/shell_dialogs_win.cc

Issue 3066014: Cleanup: Remove unneeded headers from app/ (part 2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 10 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "chrome/browser/shell_dialogs.h" 5 #include "chrome/browser/shell_dialogs.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 #include <commdlg.h> 8 #include <commdlg.h>
9 #include <shlobj.h> 9 #include <shlobj.h>
10 10
11 #include <algorithm> 11 #include <algorithm>
12 #include <set> 12 #include <set>
13 13
14 #include "app/l10n_util.h" 14 #include "app/l10n_util.h"
15 #include "app/win_util.h"
16 #include "base/file_util.h" 15 #include "base/file_util.h"
17 #include "base/message_loop.h" 16 #include "base/message_loop.h"
18 #include "base/registry.h" 17 #include "base/registry.h"
19 #include "base/scoped_comptr_win.h" 18 #include "base/scoped_comptr_win.h"
20 #include "base/thread.h" 19 #include "base/thread.h"
21 #include "base/utf_string_conversions.h" 20 #include "base/utf_string_conversions.h"
22 #include "base/win_util.h" 21 #include "base/win_util.h"
23 #include "chrome/browser/chrome_thread.h" 22 #include "chrome/browser/chrome_thread.h"
24 #include "gfx/font.h" 23 #include "gfx/font.h"
25 #include "grit/app_strings.h" 24 #include "grit/app_strings.h"
(...skipping 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 void SelectFontDialogImpl::FontNotSelected(void* params, RunState run_state) { 1115 void SelectFontDialogImpl::FontNotSelected(void* params, RunState run_state) {
1117 if (listener_) 1116 if (listener_)
1118 listener_->FontSelectionCanceled(params); 1117 listener_->FontSelectionCanceled(params);
1119 EndRun(run_state); 1118 EndRun(run_state);
1120 } 1119 }
1121 1120
1122 // static 1121 // static
1123 SelectFontDialog* SelectFontDialog::Create(Listener* listener) { 1122 SelectFontDialog* SelectFontDialog::Create(Listener* listener) {
1124 return new SelectFontDialogImpl(listener); 1123 return new SelectFontDialogImpl(listener);
1125 } 1124 }
OLDNEW
« no previous file with comments | « chrome/browser/views/options/options_window_view.cc ('k') | chrome/browser/views/status_bubble_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698