OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/files/file_path.h" | 6 #include "base/files/file_path.h" |
7 #include "base/files/file_util.h" | 7 #include "base/files/file_util.h" |
8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
11 #include "chrome/browser/chromeos/drive/drive_integration_service.h" | 11 #include "chrome/browser/chromeos/drive/drive_integration_service.h" |
12 #include "chrome/browser/chromeos/drive/file_system_util.h" | 12 #include "chrome/browser/chromeos/drive/file_system_util.h" |
13 #include "chrome/browser/chromeos/file_manager/mount_test_util.h" | 13 #include "chrome/browser/chromeos/file_manager/mount_test_util.h" |
14 #include "chrome/browser/chromeos/file_manager/volume_manager.h" | 14 #include "chrome/browser/chromeos/file_manager/volume_manager.h" |
15 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 15 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
16 #include "chrome/browser/drive/fake_drive_service.h" | |
17 #include "chrome/browser/extensions/extension_apitest.h" | 16 #include "chrome/browser/extensions/extension_apitest.h" |
18 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
19 #include "chrome/browser/profiles/profile_manager.h" | 18 #include "chrome/browser/profiles/profile_manager.h" |
20 #include "chrome/browser/ui/browser.h" | 19 #include "chrome/browser/ui/browser.h" |
21 #include "chrome/common/chrome_constants.h" | 20 #include "chrome/common/chrome_constants.h" |
22 #include "chrome/common/chrome_paths.h" | 21 #include "chrome/common/chrome_paths.h" |
| 22 #include "components/drive/service/fake_drive_service.h" |
23 #include "components/user_manager/user_manager.h" | 23 #include "components/user_manager/user_manager.h" |
24 #include "content/public/browser/browser_context.h" | 24 #include "content/public/browser/browser_context.h" |
25 #include "content/public/browser/notification_service.h" | 25 #include "content/public/browser/notification_service.h" |
26 #include "content/public/test/test_utils.h" | 26 #include "content/public/test/test_utils.h" |
27 #include "extensions/browser/notification_types.h" | 27 #include "extensions/browser/notification_types.h" |
28 #include "extensions/test/result_catcher.h" | 28 #include "extensions/test/result_catcher.h" |
29 #include "google_apis/drive/drive_api_parser.h" | 29 #include "google_apis/drive/drive_api_parser.h" |
30 #include "google_apis/drive/test_util.h" | 30 #include "google_apis/drive/test_util.h" |
31 #include "google_apis/drive/time_util.h" | 31 #include "google_apis/drive/time_util.h" |
32 #include "storage/browser/fileapi/external_mount_points.h" | 32 #include "storage/browser/fileapi/external_mount_points.h" |
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
853 AppFileHandlerMulti) { | 853 AppFileHandlerMulti) { |
854 EXPECT_TRUE( | 854 EXPECT_TRUE( |
855 RunFileSystemExtensionApiTest("file_browser/app_file_handler_multi", | 855 RunFileSystemExtensionApiTest("file_browser/app_file_handler_multi", |
856 FILE_PATH_LITERAL("manifest.json"), | 856 FILE_PATH_LITERAL("manifest.json"), |
857 "", | 857 "", |
858 FLAGS_NONE)) | 858 FLAGS_NONE)) |
859 << message_; | 859 << message_; |
860 } | 860 } |
861 } // namespace | 861 } // namespace |
862 } // namespace file_manager | 862 } // namespace file_manager |
OLD | NEW |