| 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 "chrome/browser/sync_file_system/local/local_file_sync_context.h" | 5 #include "chrome/browser/sync_file_system/local/local_file_sync_context.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/bind.h" | 11 #include "base/bind.h" |
| 12 #include "base/bind_helpers.h" | 12 #include "base/bind_helpers.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/files/file_util.h" | 14 #include "base/files/file_util.h" |
| 15 #include "base/location.h" | 15 #include "base/location.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/message_loop/message_loop.h" | 17 #include "base/message_loop/message_loop.h" |
| 18 #include "base/run_loop.h" | 18 #include "base/run_loop.h" |
| 19 #include "base/single_thread_task_runner.h" | 19 #include "base/single_thread_task_runner.h" |
| 20 #include "base/stl_util.h" | 20 #include "base/stl_util.h" |
| 21 #include "base/threading/thread_task_runner_handle.h" | 21 #include "base/threading/thread_task_runner_handle.h" |
| 22 #include "chrome/browser/sync_file_system/local/canned_syncable_file_system.h" | 22 #include "chrome/browser/sync_file_system/local/canned_syncable_file_system.h" |
| 23 #include "chrome/browser/sync_file_system/local/local_file_change_tracker.h" | 23 #include "chrome/browser/sync_file_system/local/local_file_change_tracker.h" |
| 24 #include "chrome/browser/sync_file_system/local/sync_file_system_backend.h" | 24 #include "chrome/browser/sync_file_system/local/sync_file_system_backend.h" |
| 25 #include "chrome/browser/sync_file_system/sync_file_metadata.h" | 25 #include "chrome/browser/sync_file_system/sync_file_metadata.h" |
| 26 #include "chrome/browser/sync_file_system/sync_status_code.h" | 26 #include "chrome/browser/sync_file_system/sync_status_code.h" |
| 27 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" | 27 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" |
| 28 #include "content/public/browser/browser_thread.h" | 28 #include "content/public/browser/browser_thread.h" |
| 29 #include "content/public/test/mock_blob_url_request_context.h" | |
| 30 #include "content/public/test/test_browser_thread_bundle.h" | 29 #include "content/public/test/test_browser_thread_bundle.h" |
| 31 #include "storage/browser/blob/scoped_file.h" | 30 #include "storage/browser/blob/scoped_file.h" |
| 32 #include "storage/browser/fileapi/file_system_context.h" | 31 #include "storage/browser/fileapi/file_system_context.h" |
| 33 #include "storage/browser/fileapi/file_system_operation_runner.h" | 32 #include "storage/browser/fileapi/file_system_operation_runner.h" |
| 34 #include "storage/browser/fileapi/isolated_context.h" | 33 #include "storage/browser/fileapi/isolated_context.h" |
| 34 #include "storage/browser/test/mock_blob_url_request_context.h" |
| 35 #include "testing/gtest/include/gtest/gtest.h" | 35 #include "testing/gtest/include/gtest/gtest.h" |
| 36 #include "third_party/leveldatabase/src/helpers/memenv/memenv.h" | 36 #include "third_party/leveldatabase/src/helpers/memenv/memenv.h" |
| 37 #include "third_party/leveldatabase/src/include/leveldb/env.h" | 37 #include "third_party/leveldatabase/src/include/leveldb/env.h" |
| 38 | 38 |
| 39 #define FPL FILE_PATH_LITERAL | 39 #define FPL FILE_PATH_LITERAL |
| 40 | 40 |
| 41 using content::BrowserThread; | 41 using content::BrowserThread; |
| 42 using storage::FileSystemContext; | 42 using storage::FileSystemContext; |
| 43 using storage::FileSystemURL; | 43 using storage::FileSystemURL; |
| 44 using storage::FileSystemURLSet; | 44 using storage::FileSystemURLSet; |
| (...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 | 953 |
| 954 // Make sure kDir and kFile are created by ApplyRemoteChange. | 954 // Make sure kDir and kFile are created by ApplyRemoteChange. |
| 955 EXPECT_EQ(base::File::FILE_OK, file_system.FileExists(kFile)); | 955 EXPECT_EQ(base::File::FILE_OK, file_system.FileExists(kFile)); |
| 956 EXPECT_EQ(base::File::FILE_OK, file_system.DirectoryExists(kDir)); | 956 EXPECT_EQ(base::File::FILE_OK, file_system.DirectoryExists(kDir)); |
| 957 | 957 |
| 958 sync_context_->ShutdownOnUIThread(); | 958 sync_context_->ShutdownOnUIThread(); |
| 959 file_system.TearDown(); | 959 file_system.TearDown(); |
| 960 } | 960 } |
| 961 | 961 |
| 962 } // namespace sync_file_system | 962 } // namespace sync_file_system |
| OLD | NEW |