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

Unified Diff: Source/core/inspector/InspectorOverlay.cpp

Issue 16357011: Remove support for -webkit-color-correction (which we've never supported on (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: resolve merge conflicts, obey brace style changes Created 7 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 | « Source/core/html/canvas/CanvasStyle.cpp ('k') | Source/core/page/Frame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorOverlay.cpp
diff --git a/Source/core/inspector/InspectorOverlay.cpp b/Source/core/inspector/InspectorOverlay.cpp
index dd37de21a5ec011a5e2212048fa3fc9de492bc2c..8edc21a0311ce43710c2884c2ca82a46af2d02b3 100644
--- a/Source/core/inspector/InspectorOverlay.cpp
+++ b/Source/core/inspector/InspectorOverlay.cpp
@@ -78,14 +78,14 @@ void drawOutlinedQuad(GraphicsContext* context, const FloatQuad& quad, const Col
context->clipOut(quadPath);
context->setStrokeThickness(outlineThickness);
- context->setStrokeColor(outlineColor, ColorSpaceDeviceRGB);
+ context->setStrokeColor(outlineColor);
context->strokePath(quadPath);
context->restore();
}
// Now do the fill
- context->setFillColor(fillColor, ColorSpaceDeviceRGB);
+ context->setFillColor(fillColor);
context->fillPath(quadPath);
}
« no previous file with comments | « Source/core/html/canvas/CanvasStyle.cpp ('k') | Source/core/page/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698