OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 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 #include "chrome/common/chrome_switches.h" | |
7 | |
8 // Fails on Windows, but we're not really supporting windows yet. | |
9 #if defined(USE_ASH) && defined(USE_AURA) && !defined(OS_WIN) | |
10 IN_PROC_BROWSER_TEST_F(ExtensionApiTest, Input) { | |
11 CommandLine::ForCurrentProcess()->AppendSwitch( | |
12 switches::kEnableExperimentalExtensionApis); | |
13 | |
14 ASSERT_TRUE(RunExtensionTest("input")) << message_; | |
15 } | |
16 #endif | |
OLD | NEW |