OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "apps/ui/native_app_window.h" | 5 #include "apps/ui/native_app_window.h" |
6 #include "chrome/browser/apps/app_browsertest_util.h" | 6 #include "chrome/browser/apps/app_browsertest_util.h" |
7 #include "chrome/browser/extensions/extension_test_message_listener.h" | 7 #include "chrome/browser/extensions/extension_test_message_listener.h" |
8 #include "chrome/test/base/interactive_test_utils.h" | 8 #include "chrome/test/base/interactive_test_utils.h" |
9 | 9 |
10 #if defined(OS_MACOSX) && !defined(OS_IOS) | 10 #if defined(OS_MACOSX) && !defined(OS_IOS) |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 #define MAYBE_TestShow TestShow | 432 #define MAYBE_TestShow TestShow |
433 #endif | 433 #endif |
434 | 434 |
435 IN_PROC_BROWSER_TEST_F(AppWindowInteractiveTest, MAYBE_TestCreate) { | 435 IN_PROC_BROWSER_TEST_F(AppWindowInteractiveTest, MAYBE_TestCreate) { |
436 ASSERT_TRUE(RunAppWindowInteractiveTest("testCreate")) << message_; | 436 ASSERT_TRUE(RunAppWindowInteractiveTest("testCreate")) << message_; |
437 } | 437 } |
438 | 438 |
439 IN_PROC_BROWSER_TEST_F(AppWindowInteractiveTest, MAYBE_TestShow) { | 439 IN_PROC_BROWSER_TEST_F(AppWindowInteractiveTest, MAYBE_TestShow) { |
440 ASSERT_TRUE(RunAppWindowInteractiveTest("testShow")) << message_; | 440 ASSERT_TRUE(RunAppWindowInteractiveTest("testShow")) << message_; |
441 } | 441 } |
| 442 |
| 443 IN_PROC_BROWSER_TEST_F(AppWindowInteractiveTest, TestDrawAttention) { |
| 444 ASSERT_TRUE(RunAppWindowInteractiveTest("testDrawAttention")) << message_; |
| 445 } |
OLD | NEW |