| 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 <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #include "content/public/browser/web_contents_observer.h" | 23 #include "content/public/browser/web_contents_observer.h" |
| 24 #include "content/public/browser/web_contents_user_data.h" | 24 #include "content/public/browser/web_contents_user_data.h" |
| 25 #include "extensions/browser/extension_function_dispatcher.h" | 25 #include "extensions/browser/extension_function_dispatcher.h" |
| 26 #include "extensions/browser/extension_registry_observer.h" | 26 #include "extensions/browser/extension_registry_observer.h" |
| 27 #include "extensions/browser/script_execution_observer.h" | 27 #include "extensions/browser/script_execution_observer.h" |
| 28 #include "extensions/browser/script_executor.h" | 28 #include "extensions/browser/script_executor.h" |
| 29 #include "extensions/common/extension_id.h" | 29 #include "extensions/common/extension_id.h" |
| 30 #include "extensions/common/stack_frame.h" | 30 #include "extensions/common/stack_frame.h" |
| 31 #include "third_party/skia/include/core/SkBitmap.h" | 31 #include "third_party/skia/include/core/SkBitmap.h" |
| 32 | 32 |
| 33 class FaviconDownloader; | |
| 34 | |
| 35 namespace content { | 33 namespace content { |
| 36 struct LoadCommittedDetails; | 34 struct LoadCommittedDetails; |
| 37 class RenderFrameHost; | 35 class RenderFrameHost; |
| 38 } | 36 } |
| 39 | 37 |
| 40 namespace gfx { | 38 namespace gfx { |
| 41 class Image; | 39 class Image; |
| 42 } | 40 } |
| 43 | 41 |
| 44 namespace extensions { | 42 namespace extensions { |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 | 284 |
| 287 // Generic weak ptr factory for posting callbacks. | 285 // Generic weak ptr factory for posting callbacks. |
| 288 base::WeakPtrFactory<TabHelper> weak_ptr_factory_; | 286 base::WeakPtrFactory<TabHelper> weak_ptr_factory_; |
| 289 | 287 |
| 290 DISALLOW_COPY_AND_ASSIGN(TabHelper); | 288 DISALLOW_COPY_AND_ASSIGN(TabHelper); |
| 291 }; | 289 }; |
| 292 | 290 |
| 293 } // namespace extensions | 291 } // namespace extensions |
| 294 | 292 |
| 295 #endif // CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ | 293 #endif // CHROME_BROWSER_EXTENSIONS_TAB_HELPER_H_ |
| OLD | NEW |