| 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/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "chrome/browser/extensions/extension_apitest.h" | 7 #include "chrome/browser/extensions/extension_apitest.h" |
| 8 #include "chrome/common/chrome_version_info.h" | 8 #include "chrome/common/chrome_version_info.h" |
| 9 #include "chrome/common/extensions/features/feature.h" | 9 #include "chrome/common/extensions/features/feature.h" |
| 10 #include "webkit/quota/quota_manager.h" | 10 #include "webkit/quota/quota_manager.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, GetUsageAndQuota) { | 48 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, GetUsageAndQuota) { |
| 49 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/get_usage_and_quota")) | 49 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/get_usage_and_quota")) |
| 50 << message_; | 50 << message_; |
| 51 } | 51 } |
| 52 | 52 |
| 53 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, RequestFileSystem) { | 53 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, RequestFileSystem) { |
| 54 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/request_file_system")) | 54 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/request_file_system")) |
| 55 << message_; | 55 << message_; |
| 56 } | 56 } |
| 57 | 57 |
| 58 IN_PROC_BROWSER_TEST_F(SyncFileSystemApiTest, WriteFileThenGetUsage) { |
| 59 ASSERT_TRUE(RunPlatformAppTest("sync_file_system/write_file_then_get_usage")) |
| 60 << message_; |
| 61 } |
| 62 |
| 58 } // namespace chrome | 63 } // namespace chrome |
| OLD | NEW |