This source file includes following definitions.
- IN_PROC_BROWSER_TEST_F
#include "chrome/browser/extensions/extension_apitest.h"
namespace extensions {
class FileSystemProviderApiTest : public ExtensionApiTest {
public:
FileSystemProviderApiTest()
: current_channel_(chrome::VersionInfo::CHANNEL_UNKNOWN) {
}
private:
extensions::ScopedCurrentChannel current_channel_;
};
IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Mount) {
ASSERT_TRUE(RunPlatformAppTestWithFlags("file_system_provider/mount",
kFlagLoadAsComponent))
<< message_;
}
}