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

Side by Side Diff: third_party/WebKit/Source/modules/canvas2d/CanvasRenderingContext2DState.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CanvasRenderingContext2DState_h 5 #ifndef CanvasRenderingContext2DState_h
6 #define CanvasRenderingContext2DState_h 6 #define CanvasRenderingContext2DState_h
7 7
8 #include "core/css/CSSFontSelectorClient.h" 8 #include "core/css/CSSFontSelectorClient.h"
9 #include "modules/canvas2d/ClipList.h" 9 #include "modules/canvas2d/ClipList.h"
10 #include "platform/fonts/Font.h" 10 #include "platform/fonts/Font.h"
11 #include "platform/graphics/paint/PaintFlags.h" 11 #include "platform/graphics/paint/PaintFlags.h"
12 #include "platform/transforms/AffineTransform.h" 12 #include "platform/transforms/AffineTransform.h"
13 #include "platform/wtf/Vector.h"
13 #include "third_party/skia/include/core/SkRefCnt.h" 14 #include "third_party/skia/include/core/SkRefCnt.h"
14 #include "wtf/Vector.h"
15 15
16 namespace blink { 16 namespace blink {
17 17
18 class CanvasRenderingContext2D; 18 class CanvasRenderingContext2D;
19 class CanvasStyle; 19 class CanvasStyle;
20 class CSSValue; 20 class CSSValue;
21 class Element; 21 class Element;
22 22
23 class CanvasRenderingContext2DState final 23 class CanvasRenderingContext2DState final
24 : public GarbageCollectedFinalized<CanvasRenderingContext2DState>, 24 : public GarbageCollectedFinalized<CanvasRenderingContext2DState>,
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 250
251 bool image_smoothing_enabled_; 251 bool image_smoothing_enabled_;
252 SkFilterQuality image_smoothing_quality_; 252 SkFilterQuality image_smoothing_quality_;
253 253
254 ClipList clip_list_; 254 ClipList clip_list_;
255 }; 255 };
256 256
257 } // namespace blink 257 } // namespace blink
258 258
259 #endif 259 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698