Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_apitest.cc

Issue 50703013: fileSystemProvider: First cut at implementing fileSystemProvider API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 #include "chrome/browser/extensions/extension_apitest.h"
6
7 namespace extensions {
8
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) {
14 }
15
16 private:
17 extensions::ScopedCurrentChannel current_channel_;
18 };
19
20 IN_PROC_BROWSER_TEST_F(FileSystemProviderApiTest, Mount) {
21 ASSERT_TRUE(RunPlatformAppTest("file_system_provider/mount"))
22 << message_;
23 }
24
25 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698