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

Unified Diff: chrome/browser/extensions/webstore_data_fetcher_delegate.h

Issue 145153002: Make sideloaded (externally installed) extensions display webstore info (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ChromeOS fix Created 6 years, 11 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/extensions/webstore_data_fetcher_delegate.h
diff --git a/chrome/browser/extensions/webstore_data_fetcher_delegate.h b/chrome/browser/extensions/webstore_data_fetcher_delegate.h
index eacb13eac297a77a6cf9537db78be064a30728d9..7f864e9704b8284977806d46b7f289dd2ee6b083 100644
--- a/chrome/browser/extensions/webstore_data_fetcher_delegate.h
+++ b/chrome/browser/extensions/webstore_data_fetcher_delegate.h
@@ -28,6 +28,21 @@ class WebstoreDataFetcherDelegate {
// Invoked when the web store response parsing is failed.
virtual void OnWebstoreResponseParseFailure(const std::string& error) = 0;
+ // Keys for indexing the returned webstore data.
+ static const char kAverageRatingKey[];
+ static const char kIconUrlKey[];
+ static const char kIdKey[];
+ static const char kInlineInstallNotSupportedKey[];
+ static const char kLocalizedDescriptionKey[];
+ static const char kLocalizedNameKey[];
+ static const char kManifestKey[];
+ static const char kRatingCountKey[];
+ static const char kRedirectUrlKey[];
+ static const char kShowUserCountKey[];
+ static const char kUsersKey[];
+ static const char kVerifiedSiteKey[];
+ static const char kVerifiedSitesKey[];
+
protected:
virtual ~WebstoreDataFetcherDelegate() {}
};
« no previous file with comments | « chrome/browser/extensions/external_install_ui.cc ('k') | chrome/browser/extensions/webstore_data_fetcher_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698