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

Side by Side Diff: src/xps/SkXPSDevice.cpp

Issue 1813123003: Reland of "switch patheffects over to sk_sp (patchset #5 id:80001 of https://codereview.chromium.or… (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: move flag into sktypes, so it is visible to both paint and other patheffect clients Created 4 years, 9 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
« no previous file with comments | « src/pdf/SkPDFDevice.cpp ('k') | tests/AsADashTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkTypes.h" 8 #include "SkTypes.h"
9 #if defined(SK_BUILD_FOR_WIN32) 9 #if defined(SK_BUILD_FOR_WIN32)
10 10
(...skipping 14 matching lines...) Expand all
25 #include "SkDraw.h" 25 #include "SkDraw.h"
26 #include "SkEndian.h" 26 #include "SkEndian.h"
27 #include "SkFindAndPlaceGlyph.h" 27 #include "SkFindAndPlaceGlyph.h"
28 #include "SkGeometry.h" 28 #include "SkGeometry.h"
29 #include "SkGlyphCache.h" 29 #include "SkGlyphCache.h"
30 #include "SkHRESULT.h" 30 #include "SkHRESULT.h"
31 #include "SkImageEncoder.h" 31 #include "SkImageEncoder.h"
32 #include "SkIStream.h" 32 #include "SkIStream.h"
33 #include "SkMaskFilter.h" 33 #include "SkMaskFilter.h"
34 #include "SkPaint.h" 34 #include "SkPaint.h"
35 #include "SkPathEffect.h"
35 #include "SkPathOps.h" 36 #include "SkPathOps.h"
36 #include "SkPoint.h" 37 #include "SkPoint.h"
37 #include "SkRasterizer.h" 38 #include "SkRasterizer.h"
38 #include "SkSFNTHeader.h" 39 #include "SkSFNTHeader.h"
39 #include "SkShader.h" 40 #include "SkShader.h"
40 #include "SkSize.h" 41 #include "SkSize.h"
41 #include "SkStream.h" 42 #include "SkStream.h"
42 #include "SkTDArray.h" 43 #include "SkTDArray.h"
43 #include "SkTLazy.h" 44 #include "SkTLazy.h"
44 #include "SkTScopedComPtr.h" 45 #include "SkTScopedComPtr.h"
(...skipping 2213 matching lines...) Expand 10 before | Expand all | Expand 10 after
2258 //SkXPSDevice* dev = new SkXPSDevice(this); 2259 //SkXPSDevice* dev = new SkXPSDevice(this);
2259 //SkSize s = SkSize::Make(width, height); 2260 //SkSize s = SkSize::Make(width, height);
2260 //dev->BeginCanvas(s, s, SkMatrix::I()); 2261 //dev->BeginCanvas(s, s, SkMatrix::I());
2261 //return dev; 2262 //return dev;
2262 } 2263 }
2263 #endif 2264 #endif
2264 return new SkXPSDevice(this->fXpsFactory.get()); 2265 return new SkXPSDevice(this->fXpsFactory.get());
2265 } 2266 }
2266 2267
2267 #endif//defined(SK_BUILD_FOR_WIN32) 2268 #endif//defined(SK_BUILD_FOR_WIN32)
OLDNEW
« no previous file with comments | « src/pdf/SkPDFDevice.cpp ('k') | tests/AsADashTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698