| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2014 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 "extensions/browser/guest_view/web_view/web_view_apitest.h" |
| 6 |
| 7 namespace extensions { |
| 8 |
| 9 class WebViewMediaAccessAPITest : public WebViewAPITest { |
| 10 protected: |
| 11 WebViewMediaAccessAPITest(); |
| 12 |
| 13 // Runs media_access/allow tests. |
| 14 void RunTest(const std::string& test_name); |
| 15 |
| 16 // content::BrowserTestBase implementation |
| 17 virtual void SetUpOnMainThread() override; |
| 18 virtual void TearDownOnMainThread() override; |
| 19 }; |
| 20 |
| 21 } // namespace extensions |
| OLD | NEW |