Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: chrome/browser/apps/app_window_interactive_uitest.cc

Issue 461303002: [Mac] Bounce app shims when app windows request attention. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update FakeHost in test. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698