| 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_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 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" | 11 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h" |
| 12 #include "chrome/browser/ui/views/extensions/extension_view_views.h" | 12 #include "chrome/browser/ui/views/extensions/extension_view_views.h" |
| 13 #include "content/public/browser/devtools_agent_host_observer.h" | 13 #include "content/public/browser/devtools_agent_host_observer.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 #include "ui/views/bubble/bubble_dialog_delegate.h" | 16 #include "ui/views/bubble/bubble_dialog_delegate.h" |
| 17 #include "url/gurl.h" | 17 #include "url/gurl.h" |
| 18 | 18 |
| 19 | |
| 20 class Browser; | |
| 21 namespace views { | 19 namespace views { |
| 22 class Widget; | 20 class Widget; |
| 23 } | 21 } |
| 24 | 22 |
| 25 namespace content { | 23 namespace content { |
| 26 class DevToolsAgentHost; | 24 class DevToolsAgentHost; |
| 27 } | 25 } |
| 28 | 26 |
| 29 namespace extensions { | 27 namespace extensions { |
| 30 class ExtensionViewHost; | 28 class ExtensionViewHost; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 bool inspect_with_devtools_; | 121 bool inspect_with_devtools_; |
| 124 | 122 |
| 125 content::NotificationRegistrar registrar_; | 123 content::NotificationRegistrar registrar_; |
| 126 | 124 |
| 127 bool widget_initialized_; | 125 bool widget_initialized_; |
| 128 | 126 |
| 129 DISALLOW_COPY_AND_ASSIGN(ExtensionPopup); | 127 DISALLOW_COPY_AND_ASSIGN(ExtensionPopup); |
| 130 }; | 128 }; |
| 131 | 129 |
| 132 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_POPUP_H_ | 130 #endif // CHROME_BROWSER_UI_VIEWS_EXTENSIONS_EXTENSION_POPUP_H_ |
| OLD | NEW |