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

Unified Diff: Source/core/inspector/InspectorOverlay.cpp

Issue 884753003: Fix template angle bracket syntax in inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Some more fixes Created 5 years, 11 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/core/inspector/InspectorNodeIds.cpp ('k') | Source/core/inspector/InspectorPageAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorOverlay.cpp
diff --git a/Source/core/inspector/InspectorOverlay.cpp b/Source/core/inspector/InspectorOverlay.cpp
index ee7118edc2f8bc517aefaa726d7f208f7564b452..6bd1f4a1514c5fff4e81a4a2d0bb2ae2d7f9c003 100644
--- a/Source/core/inspector/InspectorOverlay.cpp
+++ b/Source/core/inspector/InspectorOverlay.cpp
@@ -72,7 +72,7 @@ public:
PathBuilder() : m_path(TypeBuilder::Array<JSONValue>::create()) { }
virtual ~PathBuilder() { }
- PassRefPtr<TypeBuilder::Array<JSONValue> > path() const { return m_path; }
+ PassRefPtr<TypeBuilder::Array<JSONValue>> path() const { return m_path; }
void appendPath(const Path& path)
{
path.apply(this, &PathBuilder::appendPathElement);
@@ -90,7 +90,7 @@ private:
void appendPathElement(const PathElement*);
void appendPathCommandAndPoints(const char* command, const FloatPoint points[], size_t length);
- RefPtr<TypeBuilder::Array<JSONValue> > m_path;
+ RefPtr<TypeBuilder::Array<JSONValue>> m_path;
};
class ShapePathBuilder : public PathBuilder {
@@ -100,7 +100,7 @@ public:
, m_renderer(renderer)
, m_shapeOutsideInfo(shapeOutsideInfo) { }
- static PassRefPtr<TypeBuilder::Array<JSONValue> > buildPath(FrameView& view, RenderObject& renderer, const ShapeOutsideInfo& shapeOutsideInfo, const Path& path)
+ static PassRefPtr<TypeBuilder::Array<JSONValue>> buildPath(FrameView& view, RenderObject& renderer, const ShapeOutsideInfo& shapeOutsideInfo, const Path& path)
{
ShapePathBuilder builder(view, renderer, shapeOutsideInfo);
builder.appendPath(path);
@@ -578,9 +578,9 @@ void PathBuilder::appendPathElement(const PathElement* pathElement)
}
}
-static RefPtr<TypeBuilder::Array<double> > buildArrayForQuad(const FloatQuad& quad)
+static RefPtr<TypeBuilder::Array<double>> buildArrayForQuad(const FloatQuad& quad)
{
- RefPtr<TypeBuilder::Array<double> > array = TypeBuilder::Array<double>::create();
+ RefPtr<TypeBuilder::Array<double>> array = TypeBuilder::Array<double>::create();
array->addItem(quad.p1().x());
array->addItem(quad.p1().y());
array->addItem(quad.p2().x());
« no previous file with comments | « Source/core/inspector/InspectorNodeIds.cpp ('k') | Source/core/inspector/InspectorPageAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698