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

Side by Side Diff: extensions/browser/api/app_window/app_window_apitest.cc

Issue 469993003: Add AppWindow.setVisibleOnAllWorkspaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initialize AppWindow::CreateParams::visible_on_all_workspaces. Created 6 years, 3 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 (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/run_loop.h" 5 #include "base/run_loop.h"
6 #include "base/strings/string_number_conversions.h" 6 #include "base/strings/string_number_conversions.h"
7 #include "chrome/browser/apps/app_browsertest_util.h" 7 #include "chrome/browser/apps/app_browsertest_util.h"
8 #include "chrome/browser/extensions/extension_test_message_listener.h" 8 #include "chrome/browser/extensions/extension_test_message_listener.h"
9 #include "chrome/browser/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
10 #include "chrome/common/extensions/features/feature_channel.h" 10 #include "chrome/common/extensions/features/feature_channel.h"
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 << message_; 153 << message_;
154 } 154 }
155 155
156 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, 156 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest,
157 WindowsApiAlphaEnabledWrongFrameType) { 157 WindowsApiAlphaEnabledWrongFrameType) {
158 EXPECT_TRUE(RunPlatformAppTest( 158 EXPECT_TRUE(RunPlatformAppTest(
159 "platform_apps/windows_api_alpha_enabled/wrong_frame_type")) 159 "platform_apps/windows_api_alpha_enabled/wrong_frame_type"))
160 << message_; 160 << message_;
161 } 161 }
162 162
163 IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest,
164 WindowsApiVisibleOnAllWorkspacesInStable) {
165 extensions::ScopedCurrentChannel channel(chrome::VersionInfo::CHANNEL_STABLE);
166 EXPECT_TRUE(RunPlatformAppTest(
167 "platform_apps/windows_api_visible_on_all_workspaces/in_stable"))
168 << message_;
169 }
170
163 } // namespace extensions 171 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/api/app_window/app_window_api.cc ('k') | extensions/browser/app_window/app_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698