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

Side by Side Diff: src/utils/debugger/SkObjectParser.cpp

Issue 1273613002: Revert of IWYU: 'core' target, files starting A-C. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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/utils/debugger/SkDrawCommand.h ('k') | tests/AAClipTest.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 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "SkObjectParser.h" 9 #include "SkObjectParser.h"
10 #include "SkData.h" 10 #include "SkData.h"
11 #include "SkFontDescriptor.h" 11 #include "SkFontDescriptor.h"
12 #include "SkPath.h"
13 #include "SkRRect.h" 12 #include "SkRRect.h"
14 #include "SkShader.h" 13 #include "SkShader.h"
15 #include "SkStream.h" 14 #include "SkStream.h"
16 #include "SkStringUtils.h" 15 #include "SkStringUtils.h"
17 #include "SkTypeface.h" 16 #include "SkTypeface.h"
18 #include "SkUtils.h" 17 #include "SkUtils.h"
19 18
20 /* TODO(chudy): Replace all std::strings with char */ 19 /* TODO(chudy): Replace all std::strings with char */
21 20
22 SkString* SkObjectParser::BitmapToString(const SkBitmap& bitmap) { 21 SkString* SkObjectParser::BitmapToString(const SkBitmap& bitmap) {
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 } 359 }
361 break; 360 break;
362 } 361 }
363 default: 362 default:
364 decodedText->append("Unknown text encoding."); 363 decodedText->append("Unknown text encoding.");
365 break; 364 break;
366 } 365 }
367 366
368 return decodedText; 367 return decodedText;
369 } 368 }
OLDNEW
« no previous file with comments | « src/utils/debugger/SkDrawCommand.h ('k') | tests/AAClipTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698