| OLD | NEW |
| 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" |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 storage::kFileSystemTypeForTransientFile)); | 383 storage::kFileSystemTypeForTransientFile)); |
| 384 EXPECT_TRUE(file_system_context->GetFileSystemBackend( | 384 EXPECT_TRUE(file_system_context->GetFileSystemBackend( |
| 385 storage::kFileSystemTypeNativeLocal)); | 385 storage::kFileSystemTypeNativeLocal)); |
| 386 EXPECT_TRUE(file_system_context->GetFileSystemBackend( | 386 EXPECT_TRUE(file_system_context->GetFileSystemBackend( |
| 387 storage::kFileSystemTypeNativeForPlatformApp)); | 387 storage::kFileSystemTypeNativeForPlatformApp)); |
| 388 } | 388 } |
| 389 | 389 |
| 390 } // namespace | 390 } // namespace |
| 391 | 391 |
| 392 } // namespace content | 392 } // namespace content |
| OLD | NEW |