| 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/shell_window_geometry_cache.h" | 5 #include "apps/shell_window_geometry_cache.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/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
| 9 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
| 10 #include "chrome/browser/ui/extensions/application_launch.h" | 10 #include "chrome/browser/ui/extensions/application_launch.h" |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 } | 108 } |
| 109 | 109 |
| 110 IN_PROC_BROWSER_TEST_F(AppWindowAPI, DISABLED_TestRestore) { | 110 IN_PROC_BROWSER_TEST_F(AppWindowAPI, DISABLED_TestRestore) { |
| 111 ASSERT_TRUE(RunAppWindowAPITest("testRestore")) << message_; | 111 ASSERT_TRUE(RunAppWindowAPITest("testRestore")) << message_; |
| 112 } | 112 } |
| 113 | 113 |
| 114 IN_PROC_BROWSER_TEST_F(AppWindowAPI, DISABLED_TestRestoreAfterClose) { | 114 IN_PROC_BROWSER_TEST_F(AppWindowAPI, DISABLED_TestRestoreAfterClose) { |
| 115 ASSERT_TRUE(RunAppWindowAPITest("testRestoreAfterClose")) << message_; | 115 ASSERT_TRUE(RunAppWindowAPITest("testRestoreAfterClose")) << message_; |
| 116 } | 116 } |
| 117 | 117 |
| 118 IN_PROC_BROWSER_TEST_F(AppWindowAPI, TestRestoreGeometryCacheChange) { | 118 // Flaky failures on mac_rel, see http://crbug.com/324915 |
| 119 #if defined(OS_MACOSX) |
| 120 #define MAYBE_TestRestoreGeometryCacheChange DISABLED_TestRestoreGeometryCacheCh
ange |
| 121 #else |
| 122 #define MAYBE_TestRestoreGeometryCacheChange TestRestoreGeometryCacheChange |
| 123 #endif |
| 124 IN_PROC_BROWSER_TEST_F(AppWindowAPI, MAYBE_TestRestoreGeometryCacheChange) { |
| 119 // This test is similar to the other AppWindowAPI tests except that at some | 125 // This test is similar to the other AppWindowAPI tests except that at some |
| 120 // point the app will send a 'ListenGeometryChange' message at which point the | 126 // point the app will send a 'ListenGeometryChange' message at which point the |
| 121 // test will check if the geometry cache entry for the test window has | 127 // test will check if the geometry cache entry for the test window has |
| 122 // changed. When the change happens, the test will let the app know so it can | 128 // changed. When the change happens, the test will let the app know so it can |
| 123 // continue running. | 129 // continue running. |
| 124 ExtensionTestMessageListener launched_listener("Launched", true); | 130 ExtensionTestMessageListener launched_listener("Launched", true); |
| 125 | 131 |
| 126 content::WindowedNotificationObserver app_loaded_observer( | 132 content::WindowedNotificationObserver app_loaded_observer( |
| 127 content::NOTIFICATION_LOAD_COMPLETED_MAIN_FRAME, | 133 content::NOTIFICATION_LOAD_COMPLETED_MAIN_FRAME, |
| 128 content::NotificationService::AllSources()); | 134 content::NotificationService::AllSources()); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 150 geo_change_helper.WaitForEntirelyChanged(); | 156 geo_change_helper.WaitForEntirelyChanged(); |
| 151 | 157 |
| 152 ResultCatcher catcher; | 158 ResultCatcher catcher; |
| 153 geometry_listener.Reply(""); | 159 geometry_listener.Reply(""); |
| 154 ASSERT_TRUE(catcher.GetNextResult()); | 160 ASSERT_TRUE(catcher.GetNextResult()); |
| 155 } | 161 } |
| 156 | 162 |
| 157 IN_PROC_BROWSER_TEST_F(AppWindowAPI, DISABLED_TestSizeConstraints) { | 163 IN_PROC_BROWSER_TEST_F(AppWindowAPI, DISABLED_TestSizeConstraints) { |
| 158 ASSERT_TRUE(RunAppWindowAPITest("testSizeConstraints")) << message_; | 164 ASSERT_TRUE(RunAppWindowAPITest("testSizeConstraints")) << message_; |
| 159 } | 165 } |
| OLD | NEW |