blob: 41adc37dbada067776bbba9dd69c53835ad45e23 [file] [log] [blame]
[email protected]aba35602010-12-07 00:42:581// 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 Croninef3e37e2018-05-14 23:47:247namespace extensions {
8
[email protected]04114b92011-04-20 04:58:019IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_FileAPI) {
[email protected]aba35602010-12-07 00:42:5810 ASSERT_TRUE(RunExtensionTest("fileapi")) << message_;
11}
[email protected]e79b1d52012-09-21 02:31:1812
hbosa497ed332016-12-05 11:24:4213// crbug.com/671144
14IN_PROC_BROWSER_TEST_F(ExtensionApiTest, DISABLED_XHROnPersistentFileSystem) {
[email protected]e79b1d52012-09-21 02:31:1815 ASSERT_TRUE(RunPlatformAppTest("xhr_persistent_fs")) << message_;
16}
[email protected]b2a03ff2012-09-22 11:04:0417
18IN_PROC_BROWSER_TEST_F(ExtensionApiTest, RequestQuotaInBackgroundPage) {
19 ASSERT_TRUE(RunExtensionTest("request_quota_background")) << message_;
20}
Devlin Croninef3e37e2018-05-14 23:47:2421
22} // namespace extensions