[email protected] | aba3560 | 2010-12-07 00:42:58 | [diff] [blame] | 1 | // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "chrome/browser/extensions/extension_apitest.h" | ||||
6 | |||||
Devlin Cronin | ef3e37e | 2018-05-14 23:47:24 | [diff] [blame] | 7 | namespace extensions { |
8 | |||||
[email protected] | 04114b9 | 2011-04-20 04:58:01 | [diff] [blame] | 9 | IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_FileAPI) { |
[email protected] | aba3560 | 2010-12-07 00:42:58 | [diff] [blame] | 10 | ASSERT_TRUE(RunExtensionTest("fileapi")) << message_; |
11 | } | ||||
[email protected] | e79b1d5 | 2012-09-21 02:31:18 | [diff] [blame] | 12 | |
hbos | a497ed33 | 2016-12-05 11:24:42 | [diff] [blame] | 13 | // crbug.com/671144 |
14 | IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_XHROnPersistentFileSystem) { | ||||
[email protected] | e79b1d5 | 2012-09-21 02:31:18 | [diff] [blame] | 15 | ASSERT_TRUE(RunPlatformAppTest("xhr_persistent_fs")) << message_; |
16 | } | ||||
[email protected] | b2a03ff | 2012-09-22 11:04:04 | [diff] [blame] | 17 | |
18 | IN_PROC_BROWSER_TEST_F(ExtensionApiTest, RequestQuotaInBackgroundPage) { | ||||
19 | ASSERT_TRUE(RunExtensionTest("request_quota_background")) << message_; | ||||
20 | } | ||||
Devlin Cronin | ef3e37e | 2018-05-14 23:47:24 | [diff] [blame] | 21 | |
22 | } // namespace extensions |