| OLD | NEW |
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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_EXCLUSIVE_ACCESS_EXCLUSIVE_ACCESS_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_UI_EXCLUSIVE_ACCESS_EXCLUSIVE_ACCESS_MANAGER_H_ |
| 6 #define CHROME_BROWSER_UI_EXCLUSIVE_ACCESS_EXCLUSIVE_ACCESS_MANAGER_H_ | 6 #define CHROME_BROWSER_UI_EXCLUSIVE_ACCESS_EXCLUSIVE_ACCESS_MANAGER_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 9 |
| 8 #include "base/feature_list.h" | 10 #include "base/feature_list.h" |
| 9 #include "base/macros.h" | 11 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | |
| 11 #include "base/timer/timer.h" | 12 #include "base/timer/timer.h" |
| 12 #include "chrome/browser/ui/exclusive_access/exclusive_access_bubble_type.h" | 13 #include "chrome/browser/ui/exclusive_access/exclusive_access_bubble_type.h" |
| 13 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" | 14 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h" |
| 14 #include "chrome/browser/ui/exclusive_access/mouse_lock_controller.h" | 15 #include "chrome/browser/ui/exclusive_access/mouse_lock_controller.h" |
| 15 | 16 |
| 16 class ExclusiveAccessContext; | 17 class ExclusiveAccessContext; |
| 17 class FullscreenController; | 18 class FullscreenController; |
| 18 class GURL; | 19 class GURL; |
| 19 class MouseLockController; | 20 class MouseLockController; |
| 20 | 21 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 80 |
| 80 ExclusiveAccessContext* const exclusive_access_context_; | 81 ExclusiveAccessContext* const exclusive_access_context_; |
| 81 FullscreenController fullscreen_controller_; | 82 FullscreenController fullscreen_controller_; |
| 82 MouseLockController mouse_lock_controller_; | 83 MouseLockController mouse_lock_controller_; |
| 83 base::OneShotTimer hold_timer_; | 84 base::OneShotTimer hold_timer_; |
| 84 | 85 |
| 85 DISALLOW_COPY_AND_ASSIGN(ExclusiveAccessManager); | 86 DISALLOW_COPY_AND_ASSIGN(ExclusiveAccessManager); |
| 86 }; | 87 }; |
| 87 | 88 |
| 88 #endif // CHROME_BROWSER_UI_EXCLUSIVE_ACCESS_EXCLUSIVE_ACCESS_MANAGER_H_ | 89 #endif // CHROME_BROWSER_UI_EXCLUSIVE_ACCESS_EXCLUSIVE_ACCESS_MANAGER_H_ |
| OLD | NEW |