Chromium Code Reviews| Index: chrome/browser/extensions/api/file_system_provider/file_system_provider_apitest.cc |
| diff --git a/chrome/browser/extensions/api/file_system_provider/file_system_provider_apitest.cc b/chrome/browser/extensions/api/file_system_provider/file_system_provider_apitest.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4d4c12d7448006513f0cc1576ae66c0331d8674b |
| --- /dev/null |
| +++ b/chrome/browser/extensions/api/file_system_provider/file_system_provider_apitest.cc |
| @@ -0,0 +1,25 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "chrome/browser/extensions/extension_apitest.h" |
| + |
| +namespace chrome { |
|
kinuko
2013/10/30 10:45:05
chrome -> extensions ?
satorux1
2013/10/31 01:51:26
oops. done.
|
| + |
| +class FileSystemProviderApiTest : public ExtensionApiTest { |
| + public: |
| + FileSystemProviderApiTest() |
| + // Set the channel to "trunk" since this API is restricted to trunk. |
| + : current_channel_(chrome::VersionInfo::CHANNEL_UNKNOWN) { |
| + } |
| + |
| + private: |
| + extensions::ScopedCurrentChannel current_channel_; |
| +}; |
| + |
| +IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Mount) { |
| + ASSERT_TRUE(RunPlatformAppTest("file_system_provider/mount")) |
| + << message_; |
| +} |
| + |
| +} // namespace chrome |