| 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 "ash/accelerators/accelerator_commands.h" | 5 #include "ash/accelerators/accelerator_commands.h" |
| 6 | 6 |
| 7 #include "ash/ash_switches.h" | 7 #include "ash/ash_switches.h" |
| 8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 9 #include "ash/wm/aura/wm_window_aura.h" | 9 #include "ash/wm/aura/wm_window_aura.h" |
| 10 #include "ash/wm/window_state.h" | 10 #include "ash/wm/common/window_state.h" |
| 11 #include "ash/wm/window_state_aura.h" | 11 #include "ash/wm/window_state_aura.h" |
| 12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "chrome/browser/apps/app_browsertest_util.h" | 15 #include "chrome/browser/apps/app_browsertest_util.h" |
| 16 #include "chrome/browser/ui/browser.h" | 16 #include "chrome/browser/ui/browser.h" |
| 17 #include "chrome/browser/ui/browser_commands.h" | 17 #include "chrome/browser/ui/browser_commands.h" |
| 18 #include "chrome/browser/ui/browser_finder.h" | 18 #include "chrome/browser/ui/browser_finder.h" |
| 19 #include "chrome/browser/ui/browser_window.h" | 19 #include "chrome/browser/ui/browser_window.h" |
| 20 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 CloseAppWindow(app_window); | 328 CloseAppWindow(app_window); |
| 329 } | 329 } |
| 330 } | 330 } |
| 331 | 331 |
| 332 INSTANTIATE_TEST_CASE_P(InitiallyRestored, | 332 INSTANTIATE_TEST_CASE_P(InitiallyRestored, |
| 333 AcceleratorCommandsPlatformAppFullscreenBrowserTest, | 333 AcceleratorCommandsPlatformAppFullscreenBrowserTest, |
| 334 Values(ui::SHOW_STATE_NORMAL)); | 334 Values(ui::SHOW_STATE_NORMAL)); |
| 335 INSTANTIATE_TEST_CASE_P(InitiallyMaximized, | 335 INSTANTIATE_TEST_CASE_P(InitiallyMaximized, |
| 336 AcceleratorCommandsPlatformAppFullscreenBrowserTest, | 336 AcceleratorCommandsPlatformAppFullscreenBrowserTest, |
| 337 Values(ui::SHOW_STATE_MAXIMIZED)); | 337 Values(ui::SHOW_STATE_MAXIMIZED)); |
| OLD | NEW |