| Index: chrome/browser/extensions/tab_helper.h
|
| diff --git a/chrome/browser/extensions/tab_helper.h b/chrome/browser/extensions/tab_helper.h
|
| index 3dd1d40679f3838f3e971774f1483092851107b7..e0cc90087ecc5c8593f5143c20e7a4380d79c7fb 100644
|
| --- a/chrome/browser/extensions/tab_helper.h
|
| +++ b/chrome/browser/extensions/tab_helper.h
|
| @@ -15,7 +15,6 @@
|
| #include "chrome/browser/extensions/active_tab_permission_granter.h"
|
| #include "chrome/browser/extensions/app_notify_channel_setup.h"
|
| #include "chrome/browser/extensions/extension_function_dispatcher.h"
|
| -#include "chrome/browser/extensions/image_loading_tracker.h"
|
| #include "chrome/common/web_apps.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| @@ -29,6 +28,10 @@ namespace content {
|
| struct LoadCommittedDetails;
|
| }
|
|
|
| +namespace gfx {
|
| +class Image;
|
| +}
|
| +
|
| namespace extensions {
|
| class Extension;
|
| class LocationBarController;
|
| @@ -199,8 +202,8 @@ class TabHelper : public content::WebContentsObserver,
|
|
|
| // App extensions related methods:
|
|
|
| - // Resets app_icon_ and if |extension| is non-null creates a new
|
| - // ImageLoadingTracker to load the extension's image.
|
| + // Resets app_icon_ and if |extension| is non-null uses ImageLoader to load
|
| + // the extension's image asynchronously.
|
| void UpdateExtensionAppIcon(const Extension* extension);
|
|
|
| const Extension* GetExtension(const std::string& extension_app_id);
|
|
|