Index: chrome/browser/extensions/platform_app_browsertest.cc |
diff --git a/chrome/browser/extensions/platform_app_browsertest.cc b/chrome/browser/extensions/platform_app_browsertest.cc |
index 14b7645b819a394fa2e57f6e0c2c7c53adef7622..256388d88e7fd24e090643acbcdc82455237a126 100644 |
--- a/chrome/browser/extensions/platform_app_browsertest.cc |
+++ b/chrome/browser/extensions/platform_app_browsertest.cc |
@@ -786,7 +786,13 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, MAYBE_Messaging) { |
EXPECT_TRUE(result_catcher.GetNextResult()); |
} |
-IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, WebContentsHasFocus) { |
+// TODO(linux_aura) http://crbug.com/163931 |
+#if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(USE_AURA) |
+#define MAYBE_WebContentsHasFocus DISABLED_WebContentsHasFocus |
+#else |
+#define MAYBE_WebContentsHasFocus WebContentsHasFocus |
+#endif |
+IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, MAYBE_WebContentsHasFocus) { |
const Extension* extension = LoadAndLaunchPlatformApp("minimal"); |
ShellWindow* window = CreateShellWindow(extension); |
EXPECT_TRUE(window->web_contents()->GetRenderWidgetHostView()->HasFocus()); |