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

Unified Diff: chrome/common/extensions/extension_resource.h

Issue 10830123: crbug.com/124865 - DCHECK failure when pinning Chrome Web Store to Launcher (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: add check (!resource.empty()) to ImageLoadingTracker Created 8 years, 4 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/common/extensions/extension_resource.h
diff --git a/chrome/common/extensions/extension_resource.h b/chrome/common/extensions/extension_resource.h
index b1a3cdb51a5687c95d64e8094777bda9c9e1922b..36d8218c040a0de979ec4d4b4087aa2b69776942 100644
--- a/chrome/common/extensions/extension_resource.h
+++ b/chrome/common/extensions/extension_resource.h
@@ -57,7 +57,7 @@ class ExtensionResource {
const FilePath& extension_root() const { return extension_root_; }
const FilePath& relative_path() const { return relative_path_; }
- bool empty() { return extension_root().empty(); }
+ bool empty() const { return extension_root().empty(); }
// Unit test helpers.
FilePath::StringType NormalizeSeperators(

Powered by Google App Engine
This is Rietveld 408576698