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_EXTENSIONS_EXTENSION_TAB_HELPER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_TAB_HELPER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TAB_HELPER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_TAB_HELPER_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
10 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
11 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
12 #include "chrome/browser/extensions/active_tab_permission_manager.h" | 11 #include "chrome/browser/extensions/active_tab_permission_manager.h" |
13 #include "chrome/browser/extensions/app_notify_channel_setup.h" | 12 #include "chrome/browser/extensions/app_notify_channel_setup.h" |
14 #include "chrome/browser/extensions/extension_function_dispatcher.h" | 13 #include "chrome/browser/extensions/extension_function_dispatcher.h" |
15 #include "chrome/browser/extensions/image_loading_tracker.h" | 14 #include "chrome/browser/extensions/image_loading_tracker.h" |
16 #include "chrome/browser/extensions/webstore_inline_installer.h" | 15 #include "chrome/browser/extensions/webstore_inline_installer.h" |
17 #include "chrome/common/web_apps.h" | 16 #include "chrome/common/web_apps.h" |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 scoped_ptr<extensions::ScriptExecutor> script_executor_; | 226 scoped_ptr<extensions::ScriptExecutor> script_executor_; |
228 scoped_ptr<extensions::LocationBarController> location_bar_controller_; | 227 scoped_ptr<extensions::LocationBarController> location_bar_controller_; |
229 scoped_refptr<extensions::ScriptBadgeController> script_badge_controller_; | 228 scoped_refptr<extensions::ScriptBadgeController> script_badge_controller_; |
230 | 229 |
231 extensions::ActiveTabPermissionManager active_tab_permission_manager_; | 230 extensions::ActiveTabPermissionManager active_tab_permission_manager_; |
232 | 231 |
233 DISALLOW_COPY_AND_ASSIGN(ExtensionTabHelper); | 232 DISALLOW_COPY_AND_ASSIGN(ExtensionTabHelper); |
234 }; | 233 }; |
235 | 234 |
236 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TAB_HELPER_H_ | 235 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_TAB_HELPER_H_ |
OLD | NEW |