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

Side by Side Diff: components/drive/chromeos/file_system/get_file_for_saving_operation.cc

Issue 2443103003: Remove unused include in sequenced_worker_pool.h (Closed)
Patch Set: merge up to r429325 Created 4 years, 1 month 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "components/drive/chromeos/file_system/get_file_for_saving_operation.h" 5 #include "components/drive/chromeos/file_system/get_file_for_saving_operation.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/callback_helpers.h" 11 #include "base/callback_helpers.h"
12 #include "base/sequenced_task_runner.h"
12 #include "components/drive/chromeos/file_cache.h" 13 #include "components/drive/chromeos/file_cache.h"
13 #include "components/drive/chromeos/file_system/create_file_operation.h" 14 #include "components/drive/chromeos/file_system/create_file_operation.h"
14 #include "components/drive/chromeos/file_system/download_operation.h" 15 #include "components/drive/chromeos/file_system/download_operation.h"
15 #include "components/drive/chromeos/file_system/operation_delegate.h" 16 #include "components/drive/chromeos/file_system/operation_delegate.h"
16 #include "components/drive/event_logger.h" 17 #include "components/drive/event_logger.h"
17 #include "components/drive/file_write_watcher.h" 18 #include "components/drive/file_write_watcher.h"
18 #include "components/drive/job_scheduler.h" 19 #include "components/drive/job_scheduler.h"
19 20
20 namespace drive { 21 namespace drive {
21 namespace file_system { 22 namespace file_system {
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 blocking_task_runner_->PostTask( 200 blocking_task_runner_->PostTask(
200 FROM_HERE, 201 FROM_HERE,
201 base::Bind(base::IgnoreResult( 202 base::Bind(base::IgnoreResult(
202 base::Bind(&internal::FileCache::FreeDiskSpaceIfNeededFor, 203 base::Bind(&internal::FileCache::FreeDiskSpaceIfNeededFor,
203 base::Unretained(cache_), 204 base::Unretained(cache_),
204 0)))); 205 0))));
205 } 206 }
206 207
207 } // namespace file_system 208 } // namespace file_system
208 } // namespace drive 209 } // namespace drive
OLDNEW
« no previous file with comments | « components/drive/chromeos/file_system/get_file_for_saving_operation.h ('k') | components/drive/chromeos/resource_metadata.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698