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

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

Issue 2867008: Show extension icons next to their top-level context menu items.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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.cc
===================================================================
--- chrome/common/extensions/extension_resource.cc (revision 50770)
+++ chrome/common/extensions/extension_resource.cc (working copy)
@@ -14,9 +14,11 @@
ExtensionResource::ExtensionResource() {
}
-ExtensionResource::ExtensionResource(const FilePath& extension_root,
+ExtensionResource::ExtensionResource(const std::string& extension_id,
+ const FilePath& extension_root,
const FilePath& relative_path)
- : extension_root_(extension_root),
+ : extension_id_(extension_id),
+ extension_root_(extension_root),
relative_path_(relative_path) {
}
« no previous file with comments | « chrome/common/extensions/extension_resource.h ('k') | chrome/common/extensions/extension_resource_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698