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

Unified Diff: Source/platform/graphics/PictureSnapshot.h

Issue 1022123002: Fix template angle bracket syntax leftovers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove Body.cpp change Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/fonts/GlyphMetricsMap.h ('k') | Source/platform/graphics/PictureSnapshot.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/PictureSnapshot.h
diff --git a/Source/platform/graphics/PictureSnapshot.h b/Source/platform/graphics/PictureSnapshot.h
index 0bd45477e98a724d855616b84618a7260413145a..beba6211ab89d19e91f06e068e46032a2c00c044 100644
--- a/Source/platform/graphics/PictureSnapshot.h
+++ b/Source/platform/graphics/PictureSnapshot.h
@@ -45,18 +45,18 @@ class FloatRect;
class PLATFORM_EXPORT PictureSnapshot : public RefCounted<PictureSnapshot> {
WTF_MAKE_NONCOPYABLE(PictureSnapshot);
public:
- typedef Vector<Vector<double> > Timings;
+ typedef Vector<Vector<double>> Timings;
struct TilePictureStream : RefCounted<TilePictureStream> {
FloatPoint layerOffset;
Vector<char> data;
};
- static PassRefPtr<PictureSnapshot> load(const Vector<RefPtr<TilePictureStream> >&);
+ static PassRefPtr<PictureSnapshot> load(const Vector<RefPtr<TilePictureStream>>&);
PictureSnapshot(PassRefPtr<SkPicture>);
- PassOwnPtr<Vector<char> > replay(unsigned fromStep = 0, unsigned toStep = 0, double scale = 1.0) const;
+ PassOwnPtr<Vector<char>> replay(unsigned fromStep = 0, unsigned toStep = 0, double scale = 1.0) const;
PassOwnPtr<Timings> profile(unsigned minIterations, double minDuration, const FloatRect* clipRect) const;
PassRefPtr<JSONArray> snapshotCommandLog() const;
« no previous file with comments | « Source/platform/fonts/GlyphMetricsMap.h ('k') | Source/platform/graphics/PictureSnapshot.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698