| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 scoped_ptr<LocationBarController> location_bar_controller_; | 247 scoped_ptr<LocationBarController> location_bar_controller_; |
| 248 | 248 |
| 249 scoped_ptr<ActiveScriptController> active_script_controller_; | 249 scoped_ptr<ActiveScriptController> active_script_controller_; |
| 250 | 250 |
| 251 scoped_ptr<ActiveTabPermissionGranter> active_tab_permission_granter_; | 251 scoped_ptr<ActiveTabPermissionGranter> active_tab_permission_granter_; |
| 252 | 252 |
| 253 scoped_ptr<BookmarkAppHelper> bookmark_app_helper_; | 253 scoped_ptr<BookmarkAppHelper> bookmark_app_helper_; |
| 254 | 254 |
| 255 Profile* profile_; | 255 Profile* profile_; |
| 256 | 256 |
| 257 // Creates WebstoreInlineInstaller instances for inline install triggers. |
| 258 scoped_ptr<WebstoreInlineInstallerFactory> webstore_inline_installer_factory_; |
| 259 |
| 257 // Vend weak pointers that can be invalidated to stop in-progress loads. | 260 // Vend weak pointers that can be invalidated to stop in-progress loads. |
| 258 base::WeakPtrFactory<TabHelper> image_loader_ptr_factory_; | 261 base::WeakPtrFactory<TabHelper> image_loader_ptr_factory_; |
| 259 | 262 |
| 260 // Creates WebstoreInlineInstaller instances for inline install triggers. | |
| 261 scoped_ptr<WebstoreInlineInstallerFactory> webstore_inline_installer_factory_; | |
| 262 | |
| 263 DISALLOW_COPY_AND_ASSIGN(TabHelper); | 263 DISALLOW_COPY_AND_ASSIGN(TabHelper); |
| 264 }; | 264 }; |
| 265 | 265 |
| 266 } // namespace extensions | 266 } // namespace extensions |
| 267 | 267 |
| 268 #endif // CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ | 268 #endif // CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ |
| OLD | NEW |