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: src/core/SkMiniRecorder.cpp

Issue 1265033002: IWYU: 'core' target, files starting A-C. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Rebase (a file was deleted). Created 5 years, 4 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/core/SkMaskFilter.cpp ('k') | src/core/SkPictureImageGenerator.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 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 #include "SkCanvas.h" 8 #include "SkCanvas.h"
9 #include "SkTLazy.h"
9 #include "SkLazyPtr.h" 10 #include "SkLazyPtr.h"
10 #include "SkMiniRecorder.h" 11 #include "SkMiniRecorder.h"
11 #include "SkPicture.h" 12 #include "SkPicture.h"
12 #include "SkPictureCommon.h" 13 #include "SkPictureCommon.h"
13 #include "SkRecordDraw.h" 14 #include "SkRecordDraw.h"
14 #include "SkTextBlob.h" 15 #include "SkTextBlob.h"
15 16
16 using namespace SkRecords; 17 using namespace SkRecords;
17 18
18 class SkEmptyPicture final : public SkPicture { 19 class SkEmptyPicture final : public SkPicture {
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 switch (fState) { 131 switch (fState) {
131 case State::kEmpty: return; 132 case State::kEmpty: return;
132 CASE(DrawBitmapRectFixedSize); 133 CASE(DrawBitmapRectFixedSize);
133 CASE(DrawPath); 134 CASE(DrawPath);
134 CASE(DrawRect); 135 CASE(DrawRect);
135 CASE(DrawTextBlob); 136 CASE(DrawTextBlob);
136 } 137 }
137 SkASSERT(false); 138 SkASSERT(false);
138 #undef CASE 139 #undef CASE
139 } 140 }
OLDNEW
« no previous file with comments | « src/core/SkMaskFilter.cpp ('k') | src/core/SkPictureImageGenerator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698