summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/webstore_data_fetcher_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/webstore_data_fetcher_delegate.h')
-rw-r--r--chrome/browser/extensions/webstore_data_fetcher_delegate.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/chrome/browser/extensions/webstore_data_fetcher_delegate.h b/chrome/browser/extensions/webstore_data_fetcher_delegate.h
index eacb13ea..7f864e9 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() {}
};