Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / chromeos / extensions / file_system_provider / file_system_provider_apitest.cc
blob8c94114c65f09b56584a1b51dd60e38a0c0fbed1
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
3 // found in the LICENSE file.
5 #include "chrome/browser/extensions/extension_apitest.h"
7 namespace extensions {
9 class FileSystemProviderApiTest : public ExtensionApiTest {
10 public:
11 FileSystemProviderApiTest()
12 // Set the channel to "trunk" since this API is restricted to trunk.
13 : current_channel_(chrome::VersionInfo::CHANNEL_UNKNOWN) {
16 private:
17 extensions::ScopedCurrentChannel current_channel_;
20 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Mount) {
21 ASSERT_TRUE(RunPlatformAppTest("file_system_provider/mount"))
22 << message_;
25 } // namespace extensions