| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 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/ui/webui/media_router/media_router_test.h" | |
| 6 | |
| 7 #include "chrome/test/base/dialog_test_browser_window.h" | |
| 8 | |
| 9 MediaRouterTest::MediaRouterTest() | |
| 10 : feature_override_(extensions::FeatureSwitch::media_router(), true) {} | |
| 11 | |
| 12 MediaRouterTest::~MediaRouterTest() { | |
| 13 } | |
| 14 | |
| 15 BrowserWindow* MediaRouterTest::CreateBrowserWindow() { | |
| 16 return new DialogTestBrowserWindow; | |
| 17 } | |
| OLD | NEW |