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

Side by Side Diff: content/browser/fileapi/file_system_context_unittest.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 "storage/browser/fileapi/file_system_context.h" 5 #include "storage/browser/fileapi/file_system_context.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
12 #include "base/thread_task_runner_handle.h" 12 #include "base/threading/thread_task_runner_handle.h"
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 #include "content/browser/quota/mock_quota_manager.h" 14 #include "content/browser/quota/mock_quota_manager.h"
15 #include "content/public/test/mock_special_storage_policy.h" 15 #include "content/public/test/mock_special_storage_policy.h"
16 #include "content/public/test/test_file_system_options.h" 16 #include "content/public/test/test_file_system_options.h"
17 #include "storage/browser/fileapi/external_mount_points.h" 17 #include "storage/browser/fileapi/external_mount_points.h"
18 #include "storage/browser/fileapi/file_system_backend.h" 18 #include "storage/browser/fileapi/file_system_backend.h"
19 #include "storage/browser/fileapi/isolated_context.h" 19 #include "storage/browser/fileapi/isolated_context.h"
20 #include "testing/gtest/include/gtest/gtest.h" 20 #include "testing/gtest/include/gtest/gtest.h"
21 21
22 #define FPL(x) FILE_PATH_LITERAL(x) 22 #define FPL(x) FILE_PATH_LITERAL(x)
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 storage::kFileSystemTypeForTransientFile)); 382 storage::kFileSystemTypeForTransientFile));
383 EXPECT_TRUE(file_system_context->GetFileSystemBackend( 383 EXPECT_TRUE(file_system_context->GetFileSystemBackend(
384 storage::kFileSystemTypeNativeLocal)); 384 storage::kFileSystemTypeNativeLocal));
385 EXPECT_TRUE(file_system_context->GetFileSystemBackend( 385 EXPECT_TRUE(file_system_context->GetFileSystemBackend(
386 storage::kFileSystemTypeNativeForPlatformApp)); 386 storage::kFileSystemTypeNativeForPlatformApp));
387 } 387 }
388 388
389 } // namespace 389 } // namespace
390 390
391 } // namespace content 391 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698