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

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

Issue 3447008: base: Finish moving the SplitString functions from string_util.h to string_split.h (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: chromeos fixes Created 10 years, 2 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
« no previous file with comments | « chrome/browser/translate/translate_manager.cc ('k') | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "base/file_util.h" 15 #include "base/file_util.h"
16 #include "base/message_loop.h" 16 #include "base/message_loop.h"
17 #include "base/registry.h" 17 #include "base/registry.h"
18 #include "base/scoped_comptr_win.h" 18 #include "base/scoped_comptr_win.h"
19 #include "base/string_split.h"
19 #include "base/thread.h" 20 #include "base/thread.h"
20 #include "base/utf_string_conversions.h" 21 #include "base/utf_string_conversions.h"
21 #include "base/win_util.h" 22 #include "base/win_util.h"
22 #include "chrome/browser/chrome_thread.h" 23 #include "chrome/browser/chrome_thread.h"
23 #include "gfx/font.h" 24 #include "gfx/font.h"
24 #include "grit/app_strings.h" 25 #include "grit/app_strings.h"
25 #include "grit/generated_resources.h" 26 #include "grit/generated_resources.h"
26 27
27 // This function takes the output of a SaveAs dialog: a filename, a filter and 28 // This function takes the output of a SaveAs dialog: a filename, a filter and
28 // the extension originally suggested to the user (shown in the dialog box) and 29 // the extension originally suggested to the user (shown in the dialog box) and
(...skipping 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 void SelectFontDialogImpl::FontNotSelected(void* params, RunState run_state) { 1120 void SelectFontDialogImpl::FontNotSelected(void* params, RunState run_state) {
1120 if (listener_) 1121 if (listener_)
1121 listener_->FontSelectionCanceled(params); 1122 listener_->FontSelectionCanceled(params);
1122 EndRun(run_state); 1123 EndRun(run_state);
1123 } 1124 }
1124 1125
1125 // static 1126 // static
1126 SelectFontDialog* SelectFontDialog::Create(Listener* listener) { 1127 SelectFontDialog* SelectFontDialog::Create(Listener* listener) {
1127 return new SelectFontDialogImpl(listener); 1128 return new SelectFontDialogImpl(listener);
1128 } 1129 }
OLDNEW
« no previous file with comments | « chrome/browser/translate/translate_manager.cc ('k') | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698