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_CHROMEOS_LOGIN_MESSAGE_BUBBLE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_MESSAGE_BUBBLE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MESSAGE_BUBBLE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_MESSAGE_BUBBLE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "chrome/browser/ui/views/bubble/bubble.h" | 13 #include "chrome/browser/ui/views/bubble/bubble.h" |
14 #include "views/controls/button/button.h" | 14 #include "views/controls/button/button.h" |
15 #include "views/controls/link_listener.h" | 15 #include "views/controls/link_listener.h" |
16 #include "views/view.h" | 16 #include "views/view.h" |
17 | 17 |
18 #if defined(TOOLKIT_USES_GTK) | 18 #if defined(TOOLKIT_USES_GTK) |
19 #include "views/widget/native_widget_gtk.h" | 19 #include "ui/views/widget/native_widget_gtk.h" |
20 #endif | 20 #endif |
21 | 21 |
22 class SkBitmap; | 22 class SkBitmap; |
23 | 23 |
24 namespace views { | 24 namespace views { |
25 class ImageButton; | 25 class ImageButton; |
26 class ImageView; | 26 class ImageView; |
27 class Label; | 27 class Label; |
28 } | 28 } |
29 | 29 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 std::vector<views::Link*> help_links_; | 114 std::vector<views::Link*> help_links_; |
115 MessageBubbleDelegate* message_delegate_; | 115 MessageBubbleDelegate* message_delegate_; |
116 bool grab_enabled_; | 116 bool grab_enabled_; |
117 | 117 |
118 DISALLOW_COPY_AND_ASSIGN(MessageBubble); | 118 DISALLOW_COPY_AND_ASSIGN(MessageBubble); |
119 }; | 119 }; |
120 | 120 |
121 } // namespace chromeos | 121 } // namespace chromeos |
122 | 122 |
123 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MESSAGE_BUBBLE_H_ | 123 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_MESSAGE_BUBBLE_H_ |
OLD | NEW |