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

Side by Side Diff: src/core/SkTextBlob.cpp

Issue 1411723005: Make SkTextBlob::RunIterator public. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-10-27 (Tuesday) 15:53:46 EDT Created 5 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 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 "SkTextBlob.h" 8 #include "SkTextBlobPriv.h"
9 9
10 #include "SkReadBuffer.h" 10 #include "SkReadBuffer.h"
11 #include "SkTypeface.h" 11 #include "SkTypeface.h"
12 #include "SkWriteBuffer.h" 12 #include "SkWriteBuffer.h"
13 13
14 namespace { 14 namespace {
15 15
16 // TODO(fmalita): replace with SkFont. 16 // TODO(fmalita): replace with SkFont.
17 class RunFont : SkNoncopyable { 17 class RunFont : SkNoncopyable {
18 public: 18 public:
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 635
636 fStorageUsed = 0; 636 fStorageUsed = 0;
637 fStorageSize = 0; 637 fStorageSize = 0;
638 fRunCount = 0; 638 fRunCount = 0;
639 fLastRun = 0; 639 fLastRun = 0;
640 fBounds.setEmpty(); 640 fBounds.setEmpty();
641 641
642 return blob; 642 return blob;
643 } 643 }
644 644
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698