OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_FULLSCREEN_FULLSCREEN_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_CONTROLLER_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h" | 12 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h" |
13 #include "chrome/common/content_settings.h" | 13 #include "components/content_settings/core/common/content_settings.h" |
14 #include "content/public/browser/notification_observer.h" | 14 #include "content/public/browser/notification_observer.h" |
15 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
16 | 16 |
17 class Browser; | 17 class Browser; |
18 class BrowserWindow; | 18 class BrowserWindow; |
19 class GURL; | 19 class GURL; |
20 class Profile; | 20 class Profile; |
21 | 21 |
22 namespace content { | 22 namespace content { |
23 class WebContents; | 23 class WebContents; |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 // Used in testing to confirm proper behavior for specific, privileged | 255 // Used in testing to confirm proper behavior for specific, privileged |
256 // fullscreen cases. | 256 // fullscreen cases. |
257 bool is_privileged_fullscreen_for_testing_; | 257 bool is_privileged_fullscreen_for_testing_; |
258 | 258 |
259 base::WeakPtrFactory<FullscreenController> ptr_factory_; | 259 base::WeakPtrFactory<FullscreenController> ptr_factory_; |
260 | 260 |
261 DISALLOW_COPY_AND_ASSIGN(FullscreenController); | 261 DISALLOW_COPY_AND_ASSIGN(FullscreenController); |
262 }; | 262 }; |
263 | 263 |
264 #endif // CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_CONTROLLER_H_ | 264 #endif // CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_CONTROLLER_H_ |
OLD | NEW |