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

Side by Side Diff: skia/ext/benchmarking_canvas.cc

Issue 1540963004: Switch to standard integer types in skia/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "skia/ext/benchmarking_canvas.h" 5 #include "skia/ext/benchmarking_canvas.h"
6 6
7 #include <stddef.h>
8
7 #include <utility> 9 #include <utility>
8 10
9 #include "base/logging.h" 11 #include "base/logging.h"
10 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
11 #include "base/time/time.h" 13 #include "base/time/time.h"
12 #include "third_party/skia/include/core/SkColorFilter.h" 14 #include "third_party/skia/include/core/SkColorFilter.h"
13 #include "third_party/skia/include/core/SkImageFilter.h" 15 #include "third_party/skia/include/core/SkImageFilter.h"
14 #include "third_party/skia/include/core/SkPaint.h" 16 #include "third_party/skia/include/core/SkPaint.h"
15 #include "third_party/skia/include/core/SkPath.h" 17 #include "third_party/skia/include/core/SkPath.h"
16 #include "third_party/skia/include/core/SkPicture.h" 18 #include "third_party/skia/include/core/SkPicture.h"
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 DCHECK(blob); 797 DCHECK(blob);
796 AutoOp op(this, "DrawTextBlob", &paint); 798 AutoOp op(this, "DrawTextBlob", &paint);
797 op.addParam("blob", AsValue(*blob)); 799 op.addParam("blob", AsValue(*blob));
798 op.addParam("x", AsValue(x)); 800 op.addParam("x", AsValue(x));
799 op.addParam("y", AsValue(y)); 801 op.addParam("y", AsValue(y));
800 802
801 INHERITED::onDrawTextBlob(blob, x, y, *op.paint()); 803 INHERITED::onDrawTextBlob(blob, x, y, *op.paint());
802 } 804 }
803 805
804 } // namespace skia 806 } // namespace skia
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698