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

Unified Diff: chrome/common/extensions/extension.h

Issue 12298015: Change NotifyAppList*() functions into observers on a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/common/extensions/extension.h
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h
index 9004094dfd5535d7f0a0b649d45581a6f4362a8d..ca8a0db2ed638214e84d8183d54edb5e5758dd68 100644
--- a/chrome/common/extensions/extension.h
+++ b/chrome/common/extensions/extension.h
@@ -33,6 +33,7 @@
#include "extensions/common/url_pattern_set.h"
#include "googleurl/src/gurl.h"
#include "ui/base/accelerators/accelerator.h"
+#include "ui/gfx/image/image_skia.h"
#include "ui/gfx/size.h"
class ExtensionAction;
@@ -965,6 +966,22 @@ struct UpdatedExtensionPermissionsInfo {
Reason reason);
};
+struct ExtensionInstallingDetails {
benwells 2013/02/18 07:56:36 I think this should go somewhere else. Not sure wh
koz (OOO until 15th September) 2013/02/19 03:20:36 As discussed, renamed to ExtensionInstallingInfo t
+ ExtensionInstallingDetails(const std::string& extension_id,
+ const std::string& extension_name,
+ gfx::ImageSkia icon,
+ bool is_app)
+ : extension_id(extension_id),
+ extension_name(extension_name),
+ icon(icon),
+ is_app(is_app) {}
+
+ std::string extension_id;
+ std::string extension_name;
+ gfx::ImageSkia icon;
+ bool is_app;
+};
+
} // namespace extensions
#endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_

Powered by Google App Engine
This is Rietveld 408576698