Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: chrome/browser/ui/views/ash/launcher/launcher_app_icon_loader.h

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/ash/launcher/launcher_app_icon_loader.h
diff --git a/chrome/browser/ui/views/ash/launcher/launcher_app_icon_loader.h b/chrome/browser/ui/views/ash/launcher/launcher_app_icon_loader.h
index 1740f5ae0602c92e729b3c303985ef5fd50fd8a1..ff26b42111165ad97db63769b6211292c3918252 100644
--- a/chrome/browser/ui/views/ash/launcher/launcher_app_icon_loader.h
+++ b/chrome/browser/ui/views/ash/launcher/launcher_app_icon_loader.h
@@ -13,9 +13,13 @@
#include "chrome/browser/extensions/image_loading_tracker.h"
#include "chrome/browser/ui/views/ash/launcher/chrome_launcher_controller.h"
-class Extension;
class Profile;
+namespace extensions {
+class Extension;
+}
+
+
// Default implementation of LauncherUpdater::AppIconLoader that interacts
// with the ExtensionService and ImageLoadingTracker to load images.
class LauncherAppIconLoader : public ChromeLauncherController::AppIconLoader,
@@ -38,10 +42,10 @@ class LauncherAppIconLoader : public ChromeLauncherController::AppIconLoader,
typedef std::map<int, std::string> ImageLoaderIDToExtensionIDMap;
// Returns the extension for the specified tab.
- const Extension* GetExtensionForTab(TabContentsWrapper* tab);
+ const extensions::Extension* GetExtensionForTab(TabContentsWrapper* tab);
// Returns the extension by ID.
- const Extension* GetExtensionByID(const std::string& id);
+ const extensions::Extension* GetExtensionByID(const std::string& id);
Profile* profile_;

Powered by Google App Engine
This is Rietveld 408576698