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

Unified Diff: extensions/common/extension_urls.h

Issue 575113002: Move Webstore URL concepts to //extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ENABLE_EXTENSIONS guard in core chrome code Created 6 years, 3 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
« no previous file with comments | « chrome/renderer/extensions/webstore_bindings.cc ('k') | extensions/common/extension_urls.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/extension_urls.h
diff --git a/extensions/common/extension_urls.h b/extensions/common/extension_urls.h
index 2236a81c307071501c55804392006ae05015704a..2440a835f9c8c97712c806f215a00b5d1c643639 100644
--- a/extensions/common/extension_urls.h
+++ b/extensions/common/extension_urls.h
@@ -5,8 +5,12 @@
#ifndef EXTENSIONS_COMMON_EXTENSION_URLS_H_
#define EXTENSIONS_COMMON_EXTENSION_URLS_H_
+#include <string>
+
#include "base/strings/string16.h"
+class GURL;
+
namespace extensions {
// The name of the event_bindings module.
@@ -23,4 +27,56 @@ bool IsSourceFromAnExtension(const base::string16& source);
} // namespace extensions
+namespace extension_urls {
+
+// Canonical URLs for the Chrome Webstore. You probably want to use one of
+// the calls below rather than using one of these constants directly, since
+// the active extensions embedder may provide its own webstore URLs.
+extern const char kChromeWebstoreBaseURL[];
+extern const char kChromeWebstoreUpdateURL[];
+
+// Returns the URL prefix for the extension/apps gallery. Can be set via the
+// --apps-gallery-url switch. The URL returned will not contain a trailing
+// slash. Do not use this as a prefix/extent for the store.
+std::string GetWebstoreLaunchURL();
+
+// Returns the URL to the extensions category on the Web Store. This is
+// derived from GetWebstoreLaunchURL().
+std::string GetWebstoreExtensionsCategoryURL();
+
+// Returns the URL prefix for an item in the extension/app gallery. This URL
+// will contain a trailing slash and should be concatenated with an item ID
+// to get the item detail URL.
+std::string GetWebstoreItemDetailURLPrefix();
+
+// Returns the URL used to get webstore data (ratings, manifest, icon URL,
+// etc.) about an extension from the webstore as JSON.
+GURL GetWebstoreItemJsonDataURL(const std::string& extension_id);
+
+// Returns the URL used to get webstore search results in JSON format. The URL
+// returns a JSON dictionary that has the search results (under "results").
+// Each entry in the array is a dictionary as the data returned for
+// GetWebstoreItemJsonDataURL above. |query| is the user typed query string.
+// |host_language_code| is the host language code, e.g. en_US. Both arguments
+// will be escaped and added as a query parameter to the returned web store
+// json search URL.
+GURL GetWebstoreJsonSearchUrl(const std::string& query,
+ const std::string& host_language_code);
+
+// Returns the URL of the web store search results page for |query|.
+GURL GetWebstoreSearchPageUrl(const std::string& query);
+
+// Return the update URL used by gallery/webstore extensions/apps. This may
+// have been overridden by a command line flag for testing purposes.
+GURL GetWebstoreUpdateUrl();
+
+// Returns whether the URL is the webstore update URL (just considering host
+// and path, not scheme, query, etc.)
+bool IsWebstoreUpdateUrl(const GURL& update_url);
+
+// Returns true if the URL points to an extension blacklist.
+bool IsBlacklistUpdateUrl(const GURL& url);
+
+} // namespace extension_urls
+
#endif // EXTENSIONS_COMMON_EXTENSION_URLS_H_
« no previous file with comments | « chrome/renderer/extensions/webstore_bindings.cc ('k') | extensions/common/extension_urls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698