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

Side by Side Diff: content/public/test/test_file_system_backend.cc

Issue 1967823004: Fix include path for moved thread_task_runner_handle.h header in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: 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 "content/public/test/test_file_system_backend.h" 5 #include "content/public/test/test_file_system_backend.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/files/file.h" 12 #include "base/files/file.h"
13 #include "base/files/file_util.h" 13 #include "base/files/file_util.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
16 #include "base/observer_list.h" 16 #include "base/observer_list.h"
17 #include "base/sequenced_task_runner.h" 17 #include "base/sequenced_task_runner.h"
18 #include "base/thread_task_runner_handle.h" 18 #include "base/threading/thread_task_runner_handle.h"
19 #include "storage/browser/fileapi/copy_or_move_file_validator.h" 19 #include "storage/browser/fileapi/copy_or_move_file_validator.h"
20 #include "storage/browser/fileapi/file_observers.h" 20 #include "storage/browser/fileapi/file_observers.h"
21 #include "storage/browser/fileapi/file_stream_reader.h" 21 #include "storage/browser/fileapi/file_stream_reader.h"
22 #include "storage/browser/fileapi/file_system_operation.h" 22 #include "storage/browser/fileapi/file_system_operation.h"
23 #include "storage/browser/fileapi/file_system_operation_context.h" 23 #include "storage/browser/fileapi/file_system_operation_context.h"
24 #include "storage/browser/fileapi/file_system_quota_util.h" 24 #include "storage/browser/fileapi/file_system_quota_util.h"
25 #include "storage/browser/fileapi/local_file_util.h" 25 #include "storage/browser/fileapi/local_file_util.h"
26 #include "storage/browser/fileapi/native_file_util.h" 26 #include "storage/browser/fileapi/native_file_util.h"
27 #include "storage/browser/fileapi/quota/quota_reservation.h" 27 #include "storage/browser/fileapi/quota/quota_reservation.h"
28 #include "storage/browser/fileapi/sandbox_file_stream_writer.h" 28 #include "storage/browser/fileapi/sandbox_file_stream_writer.h"
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 return nullptr; 238 return nullptr;
239 } 239 }
240 240
241 void TestFileSystemBackend::AddFileChangeObserver( 241 void TestFileSystemBackend::AddFileChangeObserver(
242 storage::FileChangeObserver* observer) { 242 storage::FileChangeObserver* observer) {
243 change_observers_ = 243 change_observers_ =
244 change_observers_.AddObserver(observer, task_runner_.get()); 244 change_observers_.AddObserver(observer, task_runner_.get());
245 } 245 }
246 246
247 } // namespace content 247 } // namespace content
OLDNEW
« no previous file with comments | « content/public/test/mock_storage_client.cc ('k') | content/public/test/test_file_system_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698