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

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

Issue 156213002: Fix SkXPSDevice (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove fix to MatrixTestImageFilter Created 6 years, 10 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 | « include/device/xps/SkXPSDevice.h ('k') | no next file » | 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 #ifndef UNICODE 8 #ifndef UNICODE
9 #define UNICODE 9 #define UNICODE
10 #endif 10 #endif
(...skipping 2435 matching lines...) Expand 10 before | Expand all | Expand 10 after
2446 CLSID_XpsOMObjectFactory, 2446 CLSID_XpsOMObjectFactory,
2447 NULL, 2447 NULL,
2448 CLSCTX_INPROC_SERVER, 2448 CLSCTX_INPROC_SERVER,
2449 IID_PPV_ARGS(&this->fXpsFactory)), 2449 IID_PPV_ARGS(&this->fXpsFactory)),
2450 "Could not create factory for layer."); 2450 "Could not create factory for layer.");
2451 2451
2452 HRVM(this->fXpsFactory->CreateCanvas(&this->fCurrentXpsCanvas), 2452 HRVM(this->fXpsFactory->CreateCanvas(&this->fCurrentXpsCanvas),
2453 "Could not create canvas for layer."); 2453 "Could not create canvas for layer.");
2454 } 2454 }
2455 2455
2456 bool SkXPSDevice::allowImageFilter(SkImageFilter*) { 2456 bool SkXPSDevice::allowImageFilter(const SkImageFilter*) {
2457 return false; 2457 return false;
2458 } 2458 }
OLDNEW
« no previous file with comments | « include/device/xps/SkXPSDevice.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698