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

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

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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 | « remoting/test/fake_socket_factory.h ('k') | skia/ext/skia_memory_dump_provider_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <utility> 7 #include <utility>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/stringprintf.h" 11 #include "base/strings/stringprintf.h"
11 #include "base/time/time.h" 12 #include "base/time/time.h"
12 #include "third_party/skia/include/core/SkColorFilter.h" 13 #include "third_party/skia/include/core/SkColorFilter.h"
13 #include "third_party/skia/include/core/SkImageFilter.h" 14 #include "third_party/skia/include/core/SkImageFilter.h"
14 #include "third_party/skia/include/core/SkPaint.h" 15 #include "third_party/skia/include/core/SkPaint.h"
15 #include "third_party/skia/include/core/SkPath.h" 16 #include "third_party/skia/include/core/SkPath.h"
16 #include "third_party/skia/include/core/SkPicture.h" 17 #include "third_party/skia/include/core/SkPicture.h"
17 #include "third_party/skia/include/core/SkRRect.h" 18 #include "third_party/skia/include/core/SkRRect.h"
18 #include "third_party/skia/include/core/SkRegion.h" 19 #include "third_party/skia/include/core/SkRegion.h"
19 #include "third_party/skia/include/core/SkString.h" 20 #include "third_party/skia/include/core/SkString.h"
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 DCHECK(blob); 796 DCHECK(blob);
796 AutoOp op(this, "DrawTextBlob", &paint); 797 AutoOp op(this, "DrawTextBlob", &paint);
797 op.addParam("blob", AsValue(*blob)); 798 op.addParam("blob", AsValue(*blob));
798 op.addParam("x", AsValue(x)); 799 op.addParam("x", AsValue(x));
799 op.addParam("y", AsValue(y)); 800 op.addParam("y", AsValue(y));
800 801
801 INHERITED::onDrawTextBlob(blob, x, y, *op.paint()); 802 INHERITED::onDrawTextBlob(blob, x, y, *op.paint());
802 } 803 }
803 804
804 } // namespace skia 805 } // namespace skia
OLDNEW
« no previous file with comments | « remoting/test/fake_socket_factory.h ('k') | skia/ext/skia_memory_dump_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698