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_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/browser/ui/exclusive_access/exclusive_access_bubble.h" | 11 #include "chrome/browser/ui/exclusive_access/exclusive_access_bubble.h" |
11 #include "content/public/browser/notification_observer.h" | 12 #include "content/public/browser/notification_observer.h" |
12 #include "content/public/browser/notification_registrar.h" | 13 #include "content/public/browser/notification_registrar.h" |
13 #include "ui/views/widget/widget_observer.h" | 14 #include "ui/views/widget/widget_observer.h" |
14 | 15 |
15 class ExclusiveAccessBubbleViewsContext; | 16 class ExclusiveAccessBubbleViewsContext; |
16 class GURL; | 17 class GURL; |
17 namespace gfx { | 18 namespace gfx { |
18 class SlideAnimation; | 19 class SlideAnimation; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 | 97 |
97 // The contents of the popup. | 98 // The contents of the popup. |
98 ExclusiveAccessView* view_; | 99 ExclusiveAccessView* view_; |
99 | 100 |
100 content::NotificationRegistrar registrar_; | 101 content::NotificationRegistrar registrar_; |
101 | 102 |
102 DISALLOW_COPY_AND_ASSIGN(ExclusiveAccessBubbleViews); | 103 DISALLOW_COPY_AND_ASSIGN(ExclusiveAccessBubbleViews); |
103 }; | 104 }; |
104 | 105 |
105 #endif // CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_H_ | 106 #endif // CHROME_BROWSER_UI_VIEWS_EXCLUSIVE_ACCESS_BUBBLE_VIEWS_H_ |
OLD | NEW |