| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 | 9 |
| 10 class BrowserView; | 10 class BrowserView; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 namespace chrome { | 85 namespace chrome { |
| 86 | 86 |
| 87 // Returns true if immersive mode should be used for fullscreen based on | 87 // Returns true if immersive mode should be used for fullscreen based on |
| 88 // command line flags. | 88 // command line flags. |
| 89 // Implemented in immersive_mode_controller_factory.cc. | 89 // Implemented in immersive_mode_controller_factory.cc. |
| 90 bool UseImmersiveFullscreen(); | 90 bool UseImmersiveFullscreen(); |
| 91 | 91 |
| 92 // Implemented in immersive_mode_controller_factory.cc. | 92 // Implemented in immersive_mode_controller_factory.cc. |
| 93 void EnableImmersiveFullscreenForTest(); |
| 94 |
| 95 // Implemented in immersive_mode_controller_factory.cc. |
| 93 ImmersiveModeController* CreateImmersiveModeController(); | 96 ImmersiveModeController* CreateImmersiveModeController(); |
| 94 | 97 |
| 95 } // namespace chrome | 98 } // namespace chrome |
| 96 | 99 |
| 97 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ | 100 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ |
| OLD | NEW |