OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/compiler_specific.h" | 5 #include "base/compiler_specific.h" |
6 #include "base/macros.h" | 6 #include "base/macros.h" |
7 #include "base/run_loop.h" | 7 #include "base/run_loop.h" |
8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "chrome/browser/apps/app_browsertest_util.h" | 10 #include "chrome/browser/apps/app_browsertest_util.h" |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 | 55 |
56 DISALLOW_COPY_AND_ASSIGN(TestAppWindowRegistryObserver); | 56 DISALLOW_COPY_AND_ASSIGN(TestAppWindowRegistryObserver); |
57 }; | 57 }; |
58 | 58 |
59 } // namespace | 59 } // namespace |
60 | 60 |
61 using AppWindowApiTest = PlatformAppBrowserTest; | 61 using AppWindowApiTest = PlatformAppBrowserTest; |
62 using ExperimentalAppWindowApiTest = ExperimentalPlatformAppBrowserTest; | 62 using ExperimentalAppWindowApiTest = ExperimentalPlatformAppBrowserTest; |
63 | 63 |
64 // Tests chrome.app.window.setIcon. | 64 // Tests chrome.app.window.setIcon. |
65 IN_PROC_BROWSER_TEST_F(ExperimentalAppWindowApiTest, SetIcon) { | 65 // Flaky test crbug.com/716726 |
| 66 IN_PROC_BROWSER_TEST_F(ExperimentalAppWindowApiTest, DISABLED_SetIcon) { |
66 std::unique_ptr<TestAppWindowRegistryObserver> test_observer( | 67 std::unique_ptr<TestAppWindowRegistryObserver> test_observer( |
67 new TestAppWindowRegistryObserver(browser()->profile())); | 68 new TestAppWindowRegistryObserver(browser()->profile())); |
68 ExtensionTestMessageListener listener("ready", true); | 69 ExtensionTestMessageListener listener("ready", true); |
69 | 70 |
70 // Launch the app and wait for it to be ready. | 71 // Launch the app and wait for it to be ready. |
71 LoadAndLaunchPlatformApp("windows_api_set_icon", &listener); | 72 LoadAndLaunchPlatformApp("windows_api_set_icon", &listener); |
72 EXPECT_EQ(0, test_observer->icon_updates()); | 73 EXPECT_EQ(0, test_observer->icon_updates()); |
73 listener.Reply(""); | 74 listener.Reply(""); |
74 | 75 |
75 // Now wait until the WebContent has decoded the icon and chrome has | 76 // Now wait until the WebContent has decoded the icon and chrome has |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 command_line->AppendSwitchASCII(switches::kAppId, | 216 command_line->AppendSwitchASCII(switches::kAppId, |
216 "jkghodnilhceideoidjikpgommlajknk"); | 217 "jkghodnilhceideoidjikpgommlajknk"); |
217 | 218 |
218 EXPECT_TRUE(RunComponentExtensionTest( | 219 EXPECT_TRUE(RunComponentExtensionTest( |
219 "platform_apps/windows_api_ime/forced_app_mode_not_fullscreen")) | 220 "platform_apps/windows_api_ime/forced_app_mode_not_fullscreen")) |
220 << message_; | 221 << message_; |
221 } | 222 } |
222 #endif // OS_CHROMEOS | 223 #endif // OS_CHROMEOS |
223 | 224 |
224 } // namespace extensions | 225 } // namespace extensions |
OLD | NEW |