OLD | NEW |
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" |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 } | 396 } |
397 break; | 397 break; |
398 } | 398 } |
399 default: | 399 default: |
400 decodedText->append("Unknown text encoding."); | 400 decodedText->append("Unknown text encoding."); |
401 break; | 401 break; |
402 } | 402 } |
403 | 403 |
404 return decodedText; | 404 return decodedText; |
405 } | 405 } |
OLD | NEW |