| 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/extensions/extension_apitest.h" | 5 #include "chrome/browser/extensions/extension_apitest.h" |
| 6 | 6 |
| 7 namespace extensions { | 7 namespace extensions { |
| 8 | 8 |
| 9 class FileSystemProviderApiTest : public ExtensionApiTest { | 9 class FileSystemProviderApiTest : public ExtensionApiTest { |
| 10 public: | 10 public: |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 kFlagLoadAsComponent)) | 49 kFlagLoadAsComponent)) |
| 50 << message_; | 50 << message_; |
| 51 } | 51 } |
| 52 | 52 |
| 53 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, ReadFile) { | 53 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, ReadFile) { |
| 54 ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/read_file", | 54 ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/read_file", |
| 55 kFlagLoadAsComponent)) | 55 kFlagLoadAsComponent)) |
| 56 << message_; | 56 << message_; |
| 57 } | 57 } |
| 58 | 58 |
| 59 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, DISABLED_BigFile) { | 59 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, BigFile) { |
| 60 ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/big_file", | 60 ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/big_file", |
| 61 kFlagLoadAsComponent)) | 61 kFlagLoadAsComponent)) |
| 62 << message_; | 62 << message_; |
| 63 } | 63 } |
| 64 | 64 |
| 65 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Evil) { | 65 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Evil) { |
| 66 ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/evil", | 66 ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/evil", |
| 67 kFlagLoadAsComponent)) | 67 kFlagLoadAsComponent)) |
| 68 << message_; | 68 << message_; |
| 69 } | 69 } |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Notify) { | 142 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Notify) { |
| 143 ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/notify", | 143 ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/notify", |
| 144 kFlagLoadAsComponent)) | 144 kFlagLoadAsComponent)) |
| 145 << message_; | 145 << message_; |
| 146 } | 146 } |
| 147 | 147 |
| 148 // TODO(mtomasz): Add a test for Notify() once it's wired to | 148 // TODO(mtomasz): Add a test for Notify() once it's wired to |
| 149 // chrome.fileManagerPrivate. | 149 // chrome.fileManagerPrivate. |
| 150 | 150 |
| 151 } // namespace extensions | 151 } // namespace extensions |
| OLD | NEW |