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_TAB_HELPER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ |
7 | 7 |
| 8 #include <map> |
| 9 #include <string> |
8 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
9 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
10 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
11 #include "chrome/browser/extensions/active_tab_permission_granter.h" | 13 #include "chrome/browser/extensions/active_tab_permission_granter.h" |
12 #include "chrome/browser/extensions/app_notify_channel_setup.h" | 14 #include "chrome/browser/extensions/app_notify_channel_setup.h" |
13 #include "chrome/browser/extensions/extension_function_dispatcher.h" | 15 #include "chrome/browser/extensions/extension_function_dispatcher.h" |
14 #include "chrome/browser/extensions/image_loading_tracker.h" | 16 #include "chrome/browser/extensions/image_loading_tracker.h" |
15 #include "chrome/common/web_apps.h" | 17 #include "chrome/common/web_apps.h" |
16 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
17 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 content::NotificationRegistrar registrar_; | 260 content::NotificationRegistrar registrar_; |
259 | 261 |
260 scoped_ptr<ScriptExecutor> script_executor_; | 262 scoped_ptr<ScriptExecutor> script_executor_; |
261 | 263 |
262 scoped_ptr<LocationBarController> location_bar_controller_; | 264 scoped_ptr<LocationBarController> location_bar_controller_; |
263 | 265 |
264 scoped_ptr<ActiveTabPermissionGranter> active_tab_permission_granter_; | 266 scoped_ptr<ActiveTabPermissionGranter> active_tab_permission_granter_; |
265 | 267 |
266 scoped_ptr<ScriptBubbleController> script_bubble_controller_; | 268 scoped_ptr<ScriptBubbleController> script_bubble_controller_; |
267 | 269 |
| 270 Profile* profile_; |
| 271 |
268 DISALLOW_COPY_AND_ASSIGN(TabHelper); | 272 DISALLOW_COPY_AND_ASSIGN(TabHelper); |
269 }; | 273 }; |
270 | 274 |
271 } // namespace extensions | 275 } // namespace extensions |
272 | 276 |
273 #endif // CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ | 277 #endif // CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ |
OLD | NEW |