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

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

Issue 6053008: Improve validation of external extension ids. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Retest on win. Created 9 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/external_extension_provider_interface.h
diff --git a/chrome/browser/extensions/external_extension_provider_interface.h b/chrome/browser/extensions/external_extension_provider_interface.h
index 7f9d3c49996618771db8d6d19dd59eb7492a073a..982b73812f6ac39422ca4ed4f24b2df7d4c1055a 100644
--- a/chrome/browser/extensions/external_extension_provider_interface.h
+++ b/chrome/browser/extensions/external_extension_provider_interface.h
@@ -21,26 +21,27 @@ class ExternalExtensionProviderInterface {
// ExternalExtensionProvider uses this interface to communicate back to the
// caller what extensions are registered, and which |id|, |version| and |path|
// they have. See also VisitRegisteredExtension below. Ownership of |version|
- // is not transferred to the visitor.
+ // is not transferred to the visitor. Callers of the methods below must
+ // ensure that |id| is a valid extension id (use Extension::IdIsValid(id)).
class VisitorInterface {
public:
- virtual void OnExternalExtensionFileFound(
- const std::string& id,
- const Version* version,
- const FilePath& path,
- Extension::Location location) = 0;
+ virtual void OnExternalExtensionFileFound(
+ const std::string& id,
+ const Version* version,
+ const FilePath& path,
+ Extension::Location location) = 0;
- virtual void OnExternalExtensionUpdateUrlFound(
- const std::string& id,
- const GURL& update_url,
- Extension::Location location) = 0;
+ virtual void OnExternalExtensionUpdateUrlFound(
+ const std::string& id,
+ const GURL& update_url,
+ Extension::Location location) = 0;
// Called after all the external extensions have been reported through
// the above two methods.
- virtual void OnExternalProviderReady() = 0;
+ virtual void OnExternalProviderReady() = 0;
protected:
- virtual ~VisitorInterface() {}
+ virtual ~VisitorInterface() {}
};
virtual ~ExternalExtensionProviderInterface() {}

Powered by Google App Engine
This is Rietveld 408576698