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

Side by Side Diff: dm/DMSrcSink.h

Issue 1644043003: SkMojo: test linking Skia against the Mojo SDK (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: more replies to mtklein@ Created 4 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 | « dm/DM.cpp ('k') | dm/DMSrcSink.cpp » ('j') | dm/DMSrcSink.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 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 DMSrcSink_DEFINED 8 #ifndef DMSrcSink_DEFINED
9 #define DMSrcSink_DEFINED 9 #define DMSrcSink_DEFINED
10 10
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 explicit ViaSingletonPictures(Sink* sink) : Via(sink) {} 348 explicit ViaSingletonPictures(Sink* sink) : Via(sink) {}
349 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override; 349 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
350 }; 350 };
351 351
352 class ViaTwice : public Via { 352 class ViaTwice : public Via {
353 public: 353 public:
354 explicit ViaTwice(Sink* sink) : Via(sink) {} 354 explicit ViaTwice(Sink* sink) : Via(sink) {}
355 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override; 355 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
356 }; 356 };
357 357
358 class ViaMojo : public Via {
359 public:
360 explicit ViaMojo(Sink* sink) : Via(sink) {}
361 Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override;
362 };
363
358 } // namespace DM 364 } // namespace DM
359 365
360 #endif//DMSrcSink_DEFINED 366 #endif//DMSrcSink_DEFINED
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | dm/DMSrcSink.cpp » ('j') | dm/DMSrcSink.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698