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

Side by Side Diff: chrome/browser/media_galleries/linux/mtp_read_file_worker.cc

Issue 486843004: Change base/file_utils.h includes to base/files/file_utils.h in chrome/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix bad merge Created 6 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 | 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 "chrome/browser/media_galleries/linux/mtp_read_file_worker.h" 5 #include "chrome/browser/media_galleries/linux/mtp_read_file_worker.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/file_util.h"
9 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/files/file_util.h"
10 #include "base/numerics/safe_conversions.h" 10 #include "base/numerics/safe_conversions.h"
11 #include "chrome/browser/media_galleries/linux/snapshot_file_details.h" 11 #include "chrome/browser/media_galleries/linux/snapshot_file_details.h"
12 #include "components/storage_monitor/storage_monitor.h" 12 #include "components/storage_monitor/storage_monitor.h"
13 #include "content/public/browser/browser_thread.h" 13 #include "content/public/browser/browser_thread.h"
14 #include "device/media_transfer_protocol/media_transfer_protocol_manager.h" 14 #include "device/media_transfer_protocol/media_transfer_protocol_manager.h"
15 #include "third_party/cros_system_api/dbus/service_constants.h" 15 #include "third_party/cros_system_api/dbus/service_constants.h"
16 16
17 using content::BrowserThread; 17 using content::BrowserThread;
18 using storage_monitor::StorageMonitor; 18 using storage_monitor::StorageMonitor;
19 19
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 base::File::FILE_ERROR_FAILED)); 132 base::File::FILE_ERROR_FAILED));
133 return; 133 return;
134 } 134 }
135 content::BrowserThread::PostTask( 135 content::BrowserThread::PostTask(
136 content::BrowserThread::IO, 136 content::BrowserThread::IO,
137 FROM_HERE, 137 FROM_HERE,
138 base::Bind(snapshot_file_details->success_callback(), 138 base::Bind(snapshot_file_details->success_callback(),
139 snapshot_file_details->file_info(), 139 snapshot_file_details->file_info(),
140 snapshot_file_details->snapshot_file_path())); 140 snapshot_file_details->snapshot_file_path()));
141 } 141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698