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

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

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 Created 4 years, 7 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 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/open_file_operation.h" 5 #include "components/drive/chromeos/file_system/open_file_operation.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/callback_helpers.h" 9 #include "base/callback_helpers.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/task_runner_util.h" 12 #include "base/task_runner_util.h"
13 #include "base/thread_task_runner_handle.h" 13 #include "base/threading/thread_task_runner_handle.h"
14 #include "components/drive/chromeos/file_cache.h" 14 #include "components/drive/chromeos/file_cache.h"
15 #include "components/drive/chromeos/file_system/create_file_operation.h" 15 #include "components/drive/chromeos/file_system/create_file_operation.h"
16 #include "components/drive/chromeos/file_system/download_operation.h" 16 #include "components/drive/chromeos/file_system/download_operation.h"
17 #include "components/drive/chromeos/file_system/operation_delegate.h" 17 #include "components/drive/chromeos/file_system/operation_delegate.h"
18 #include "components/drive/drive.pb.h" 18 #include "components/drive/drive.pb.h"
19 #include "components/drive/file_errors.h" 19 #include "components/drive/file_errors.h"
20 #include "components/drive/job_scheduler.h" 20 #include "components/drive/job_scheduler.h"
21 21
22 namespace drive { 22 namespace drive {
23 namespace file_system { 23 namespace file_system {
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 FROM_HERE, 176 FROM_HERE,
177 base::Bind(base::IgnoreResult( 177 base::Bind(base::IgnoreResult(
178 base::Bind(&internal::FileCache::FreeDiskSpaceIfNeededFor, 178 base::Bind(&internal::FileCache::FreeDiskSpaceIfNeededFor,
179 base::Unretained(cache_), 179 base::Unretained(cache_),
180 0)))); 180 0))));
181 } 181 }
182 } 182 }
183 183
184 } // namespace file_system 184 } // namespace file_system
185 } // namespace drive 185 } // namespace drive
OLDNEW
« no previous file with comments | « components/drive/chromeos/file_cache_unittest.cc ('k') | components/drive/chromeos/file_system/truncate_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698