| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 namespace chrome { | 60 namespace chrome { |
| 61 | 61 |
| 62 // Returns true if immersive mode should be used for fullscreen based on | 62 // Returns true if immersive mode should be used for fullscreen based on |
| 63 // command line flags. | 63 // command line flags. |
| 64 // Implemented in immersive_mode_controller_factory.cc. | 64 // Implemented in immersive_mode_controller_factory.cc. |
| 65 bool UseImmersiveFullscreen(); | 65 bool UseImmersiveFullscreen(); |
| 66 | 66 |
| 67 // Implemented in immersive_mode_controller_factory.cc. | 67 // Implemented in immersive_mode_controller_factory.cc. |
| 68 void EnableImmersiveFullscreenForTest(); |
| 69 |
| 70 // Implemented in immersive_mode_controller_factory.cc. |
| 68 ImmersiveModeController* CreateImmersiveModeController(); | 71 ImmersiveModeController* CreateImmersiveModeController(); |
| 69 | 72 |
| 70 } // namespace chrome | 73 } // namespace chrome |
| 71 | 74 |
| 72 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ | 75 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_MODE_CONTROLLER_H_ |
| OLD | NEW |