| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_FULLSCREEN_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_FULLSCREEN_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_FULLSCREEN_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_FULLSCREEN_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/task.h" | |
| 12 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" | 11 #include "chrome/browser/ui/fullscreen_exit_bubble_type.h" |
| 13 #include "chrome/common/content_settings.h" | 12 #include "chrome/common/content_settings.h" |
| 14 | 13 |
| 15 class Browser; | 14 class Browser; |
| 16 class BrowserWindow; | 15 class BrowserWindow; |
| 17 class GURL; | 16 class GURL; |
| 18 class Profile; | 17 class Profile; |
| 19 class TabContents; | 18 class TabContents; |
| 20 class TabContentsWrapper; | 19 class TabContentsWrapper; |
| 21 | 20 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 // True if tab fullscreen has been allowed, either by settings or by user | 99 // True if tab fullscreen has been allowed, either by settings or by user |
| 101 // clicking the allow button on the fullscreen infobar. | 100 // clicking the allow button on the fullscreen infobar. |
| 102 bool tab_fullscreen_accepted_; | 101 bool tab_fullscreen_accepted_; |
| 103 | 102 |
| 104 MouseLockState mouse_lock_state_; | 103 MouseLockState mouse_lock_state_; |
| 105 | 104 |
| 106 DISALLOW_COPY_AND_ASSIGN(FullscreenController); | 105 DISALLOW_COPY_AND_ASSIGN(FullscreenController); |
| 107 }; | 106 }; |
| 108 | 107 |
| 109 #endif // CHROME_BROWSER_UI_FULLSCREEN_CONTROLLER_H_ | 108 #endif // CHROME_BROWSER_UI_FULLSCREEN_CONTROLLER_H_ |
| OLD | NEW |