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

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

Issue 1997453003: Fix "unused variable" warnings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move changes in and out to fix compile Created 4 years, 7 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/extension_action_icon_factory.cc
diff --git a/chrome/browser/extensions/extension_action_icon_factory.cc b/chrome/browser/extensions/extension_action_icon_factory.cc
index a7e8df3043b89b0c226df33c89ce1830a5b539f4..4b72500939a93b1208dd675f54e9c9d106016069 100644
--- a/chrome/browser/extensions/extension_action_icon_factory.cc
+++ b/chrome/browser/extensions/extension_action_icon_factory.cc
@@ -17,10 +17,7 @@ ExtensionActionIconFactory::ExtensionActionIconFactory(
const Extension* extension,
ExtensionAction* action,
Observer* observer)
- : extension_(extension),
- action_(action),
- observer_(observer),
- icon_image_observer_(this) {
+ : action_(action), observer_(observer), icon_image_observer_(this) {
extensions::IconImage* default_icon_image =
action->LoadDefaultIconImage(*extension, profile);
if (default_icon_image)

Powered by Google App Engine
This is Rietveld 408576698