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_VIEWS_EXTENSIONS_EXTENSION_POPUP_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_POPUP_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_POPUP_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_POPUP_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/extensions/extension_host.h" | 9 #include "chrome/browser/extensions/extension_host.h" |
10 #include "chrome/browser/ui/views/browser_bubble.h" | 10 #include "chrome/browser/ui/views/browser_bubble.h" |
| 11 #include "chrome/browser/ui/views/bubble_border.h" |
11 #include "chrome/browser/ui/views/extensions/extension_view.h" | 12 #include "chrome/browser/ui/views/extensions/extension_view.h" |
12 #include "chrome/browser/ui/views/bubble_border.h" | |
13 #include "chrome/common/notification_observer.h" | 13 #include "chrome/common/notification_observer.h" |
14 #include "chrome/common/notification_registrar.h" | 14 #include "chrome/common/notification_registrar.h" |
15 #include "gfx/native_widget_types.h" | 15 #include "gfx/native_widget_types.h" |
16 #include "googleurl/src/gurl.h" | 16 #include "googleurl/src/gurl.h" |
17 | 17 |
18 | 18 |
19 class Browser; | 19 class Browser; |
20 class ExtensionHost; | 20 class ExtensionHost; |
21 class Profile; | 21 class Profile; |
22 | 22 |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 // not expose the RefCounted interface. Instead, the lifetime is tied to | 230 // not expose the RefCounted interface. Instead, the lifetime is tied to |
231 // this member variable. | 231 // this member variable. |
232 class InternalRefCounter : public base::RefCounted<InternalRefCounter> { | 232 class InternalRefCounter : public base::RefCounted<InternalRefCounter> { |
233 }; | 233 }; |
234 InternalRefCounter* instance_lifetime_; | 234 InternalRefCounter* instance_lifetime_; |
235 | 235 |
236 DISALLOW_COPY_AND_ASSIGN(ExtensionPopup); | 236 DISALLOW_COPY_AND_ASSIGN(ExtensionPopup); |
237 }; | 237 }; |
238 | 238 |
239 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_POPUP_H_ | 239 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_POPUP_H_ |
OLD | NEW |