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

Unified Diff: chrome/browser/extensions/extension_service.cc

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
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_service.cc
diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
index 5ad45e9ea1c283bffd237ff844d23cde5249bb72..f71cae03479cb5d638a77f63463ff31285c0c85d 100644
--- a/chrome/browser/extensions/extension_service.cc
+++ b/chrome/browser/extensions/extension_service.cc
@@ -311,7 +311,8 @@ void ExtensionService::OnExternalExtensionUpdateUrlFound(
const std::string& id,
const GURL& update_url,
Extension::Location location) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ CHECK(Extension::IdIsValid(id));
if (GetExtensionById(id, true)) {
// Already installed. Do not change the update URL that the extension set.
@@ -1823,7 +1824,8 @@ void ExtensionService::OnExternalExtensionFileFound(
const Version* version,
const FilePath& path,
Extension::Location location) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ CHECK(Extension::IdIsValid(id));
if (extension_prefs_->IsExtensionKilled(id))
return;
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698