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

Unified Diff: Source/platform/graphics/GraphicsContext.h

Issue 1170523002: Removing GraphicsContext from ImageBuffer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix unit test crashes Created 5 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: Source/platform/graphics/GraphicsContext.h
diff --git a/Source/platform/graphics/GraphicsContext.h b/Source/platform/graphics/GraphicsContext.h
index da04802e1c85b82768c8b6c6d0a09e46e40c50ca..886e7ed1dfa0aa621b19d4da871d8a2f8452fff2 100644
--- a/Source/platform/graphics/GraphicsContext.h
+++ b/Source/platform/graphics/GraphicsContext.h
@@ -152,9 +152,6 @@ public:
bool printing() const { return m_printing; }
void setPrinting(bool printing) { m_printing = printing; }
- bool isAccelerated() const { return m_accelerated; }
- void setAccelerated(bool accelerated) { m_accelerated = accelerated; }
-
SkColorFilter* colorFilter() const;
void setColorFilter(ColorFilter);
// ---------- End state management methods -----------------
@@ -403,7 +400,6 @@ private:
float m_deviceScaleFactor;
- unsigned m_accelerated : 1;
unsigned m_printing : 1;
};

Powered by Google App Engine
This is Rietveld 408576698