Home | History | Annotate | Download | only in audio
      1 // Copyright (c) 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 "base/command_line.h"
      6 #include "base/message_loop/message_loop.h"
      7 #include "chrome/browser/extensions/api/audio/audio_api.h"
      8 #include "chrome/browser/extensions/extension_apitest.h"
      9 #include "chrome/common/chrome_switches.h"
     10 #include "extensions/test/extension_test_message_listener.h"
     11 
     12 namespace extensions {
     13 
     14 class AudioApiTest: public ExtensionApiTest {
     15  public:
     16   AudioApiTest() {}
     17   virtual ~AudioApiTest() {}
     18 };
     19 
     20 #if defined(OS_CHROMEOS)
     21 IN_PROC_BROWSER_TEST_F(AudioApiTest, Audio) {
     22   EXPECT_TRUE(RunExtensionTest("audio")) << message_;
     23 }
     24 #endif
     25 
     26 } // namespace extensions
     27