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

Side by Side Diff: chrome/browser/download/save_package.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, 3 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) 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/download/save_package.h" 5 #include "chrome/browser/download/save_package.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/i18n/file_util_icu.h" 10 #include "base/i18n/file_util_icu.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/message_loop.h" 12 #include "base/message_loop.h"
13 #include "base/stl_util-inl.h" 13 #include "base/stl_util-inl.h"
14 #include "base/string_piece.h" 14 #include "base/string_piece.h"
15 #include "base/string_split.h"
15 #include "base/utf_string_conversions.h" 16 #include "base/utf_string_conversions.h"
16 #include "base/task.h" 17 #include "base/task.h"
17 #include "base/thread.h" 18 #include "base/thread.h"
18 #include "chrome/browser/browser_process.h" 19 #include "chrome/browser/browser_process.h"
19 #include "chrome/browser/chrome_thread.h" 20 #include "chrome/browser/chrome_thread.h"
20 #include "chrome/browser/download/download_item.h" 21 #include "chrome/browser/download/download_item.h"
21 #include "chrome/browser/download/download_item_model.h" 22 #include "chrome/browser/download/download_item_model.h"
22 #include "chrome/browser/download/download_manager.h" 23 #include "chrome/browser/download/download_manager.h"
23 #include "chrome/browser/download/download_shelf.h" 24 #include "chrome/browser/download/download_shelf.h"
24 #include "chrome/browser/download/download_util.h" 25 #include "chrome/browser/download/download_util.h"
(...skipping 1345 matching lines...) Expand 10 before | Expand all | Expand 10 after
1370 int index, void* params) { 1371 int index, void* params) {
1371 SavePackageParam* save_params = reinterpret_cast<SavePackageParam*>(params); 1372 SavePackageParam* save_params = reinterpret_cast<SavePackageParam*>(params);
1372 ContinueSave(save_params, path, index); 1373 ContinueSave(save_params, path, index);
1373 delete save_params; 1374 delete save_params;
1374 } 1375 }
1375 1376
1376 void SavePackage::FileSelectionCanceled(void* params) { 1377 void SavePackage::FileSelectionCanceled(void* params) {
1377 SavePackageParam* save_params = reinterpret_cast<SavePackageParam*>(params); 1378 SavePackageParam* save_params = reinterpret_cast<SavePackageParam*>(params);
1378 delete save_params; 1379 delete save_params;
1379 } 1380 }
OLDNEW
« no previous file with comments | « chrome/browser/download/download_prefs.cc ('k') | chrome/browser/extensions/extension_devtools_events.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698