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

Side by Side Diff: extensions/browser/app_window/app_window_interactive_uitest.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 4 years, 12 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "build/build_config.h"
5 #include "chrome/browser/apps/app_browsertest_util.h" 6 #include "chrome/browser/apps/app_browsertest_util.h"
6 #include "extensions/browser/app_window/native_app_window.h" 7 #include "extensions/browser/app_window/native_app_window.h"
7 8
8 namespace extensions { 9 namespace extensions {
9 10
10 namespace { 11 namespace {
11 12
12 class AppWindowTest : public PlatformAppBrowserTest { 13 class AppWindowTest : public PlatformAppBrowserTest {
13 protected: 14 protected:
14 void CheckAlwaysOnTopToFullscreen(AppWindow* window) { 15 void CheckAlwaysOnTopToFullscreen(AppWindow* window) {
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 EXPECT_FALSE(window->GetBaseWindow()->IsAlwaysOnTop()); 179 EXPECT_FALSE(window->GetBaseWindow()->IsAlwaysOnTop());
179 180
180 // Ensure that always-on-top remains disabled. 181 // Ensure that always-on-top remains disabled.
181 window->Restore(); 182 window->Restore();
182 EXPECT_FALSE(window->GetBaseWindow()->IsAlwaysOnTop()); 183 EXPECT_FALSE(window->GetBaseWindow()->IsAlwaysOnTop());
183 184
184 CloseAppWindow(window); 185 CloseAppWindow(window);
185 } 186 }
186 187
187 } // namespace extensions 188 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698