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

Side by Side Diff: storage/browser/fileapi/obfuscated_file_util_unittest.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 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 <stddef.h> 5 #include <stddef.h>
6 #include <stdint.h> 6 #include <stdint.h>
7 7
8 #include <limits> 8 #include <limits>
9 #include <memory> 9 #include <memory>
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 #include <utility> 12 #include <utility>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/bind.h" 15 #include "base/bind.h"
16 #include "base/files/file.h" 16 #include "base/files/file.h"
17 #include "base/files/file_path.h" 17 #include "base/files/file_path.h"
18 #include "base/files/file_util.h" 18 #include "base/files/file_util.h"
19 #include "base/files/scoped_temp_dir.h" 19 #include "base/files/scoped_temp_dir.h"
20 #include "base/macros.h" 20 #include "base/macros.h"
21 #include "base/message_loop/message_loop.h"
21 #include "base/run_loop.h" 22 #include "base/run_loop.h"
22 #include "base/threading/thread_task_runner_handle.h" 23 #include "base/threading/thread_task_runner_handle.h"
23 #include "build/build_config.h" 24 #include "build/build_config.h"
24 #include "storage/browser/fileapi/external_mount_points.h" 25 #include "storage/browser/fileapi/external_mount_points.h"
25 #include "storage/browser/fileapi/file_system_backend.h" 26 #include "storage/browser/fileapi/file_system_backend.h"
26 #include "storage/browser/fileapi/file_system_context.h" 27 #include "storage/browser/fileapi/file_system_context.h"
27 #include "storage/browser/fileapi/file_system_operation_context.h" 28 #include "storage/browser/fileapi/file_system_operation_context.h"
28 #include "storage/browser/fileapi/file_system_usage_cache.h" 29 #include "storage/browser/fileapi/file_system_usage_cache.h"
29 #include "storage/browser/fileapi/obfuscated_file_util.h" 30 #include "storage/browser/fileapi/obfuscated_file_util.h"
30 #include "storage/browser/fileapi/sandbox_directory_database.h" 31 #include "storage/browser/fileapi/sandbox_directory_database.h"
(...skipping 2543 matching lines...) Expand 10 before | Expand all | Expand 10 after
2574 ofu()->GetDirectoryForOriginAndType( 2575 ofu()->GetDirectoryForOriginAndType(
2575 origin2, GetTypeString(kFileSystemTypeTemporary), false, &error); 2576 origin2, GetTypeString(kFileSystemTypeTemporary), false, &error);
2576 ASSERT_EQ(base::File::FILE_OK, error); 2577 ASSERT_EQ(base::File::FILE_OK, error);
2577 error = base::File::FILE_ERROR_FAILED; 2578 error = base::File::FILE_ERROR_FAILED;
2578 ofu()->GetDirectoryForOriginAndType( 2579 ofu()->GetDirectoryForOriginAndType(
2579 origin2, GetTypeString(kFileSystemTypePersistent), false, &error); 2580 origin2, GetTypeString(kFileSystemTypePersistent), false, &error);
2580 ASSERT_EQ(base::File::FILE_OK, error); 2581 ASSERT_EQ(base::File::FILE_OK, error);
2581 } 2582 }
2582 2583
2583 } // namespace content 2584 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698