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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h
diff --git a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h
index 6073c20edcbb17cb210f50c2fa176418440c850e..39905ed9f1b47107cbb29b2a038a05351f757ad8 100644
--- a/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h
+++ b/third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h
@@ -88,10 +88,10 @@ public:
bool hasFilter() const { return m_filterValue; }
void setStrokeStyle(CanvasStyle*);
- CanvasStyle* strokeStyle() const { return m_strokeStyle.get(); }
+ CanvasStyle* strokeStyle() const;
void setFillStyle(CanvasStyle*);
- CanvasStyle* fillStyle() const { return m_fillStyle.get(); }
+ CanvasStyle* fillStyle() const;
CanvasStyle* style(PaintType) const;

Powered by Google App Engine
This is Rietveld 408576698