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

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

Issue 2821010: Cleanup: Break some common->app dependencies. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: committed version with minor lint cleanup 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
« no previous file with comments | « chrome/common/child_process_logging_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension_action.cc
===================================================================
--- chrome/common/extensions/extension_action.cc (revision 50869)
+++ chrome/common/extensions/extension_action.cc (working copy)
@@ -8,7 +8,6 @@
#include "app/resource_bundle.h"
#include "base/utf_string_conversions.h"
-#include "chrome/app/chrome_dll_resource.h"
#include "gfx/canvas_skia.h"
#include "gfx/font.h"
#include "gfx/rect.h"
@@ -158,7 +157,8 @@
rect_paint.setStyle(SkPaint::kFill_Style);
rect_paint.setAntiAlias(true);
rect_paint.setColor(background_color);
- canvas->AsCanvasSkia()->drawRoundRect(rect, SkIntToScalar(2), SkIntToScalar(2),
+ canvas->AsCanvasSkia()->drawRoundRect(rect, SkIntToScalar(2),
+ SkIntToScalar(2),
rect_paint);
// Overlay the gradient. It is stretchy, so we do this in three parts.
« no previous file with comments | « chrome/common/child_process_logging_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698