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

Unified Diff: Source/platform/JSONValues.h

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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/platform/CrossThreadCopier.h ('k') | Source/platform/JSONValues.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/JSONValues.h
diff --git a/Source/platform/JSONValues.h b/Source/platform/JSONValues.h
index 67864a5e12feec2c6ade04d5fc0e5aa31f831dd8..e57d08a60b8bb7c6c14422b2f7c353a140060cb8 100644
--- a/Source/platform/JSONValues.h
+++ b/Source/platform/JSONValues.h
@@ -161,7 +161,7 @@ private:
class PLATFORM_EXPORT JSONObjectBase : public JSONValue {
private:
- typedef HashMap<String, RefPtr<JSONValue> > Dictionary;
+ typedef HashMap<String, RefPtr<JSONValue>> Dictionary;
public:
typedef Dictionary::iterator iterator;
@@ -253,8 +253,8 @@ public:
class PLATFORM_EXPORT JSONArrayBase : public JSONValue {
public:
- typedef Vector<RefPtr<JSONValue> >::iterator iterator;
- typedef Vector<RefPtr<JSONValue> >::const_iterator const_iterator;
+ typedef Vector<RefPtr<JSONValue>>::iterator iterator;
+ typedef Vector<RefPtr<JSONValue>>::const_iterator const_iterator;
virtual PassRefPtr<JSONArray> asArray() override;
@@ -288,7 +288,7 @@ protected:
JSONArrayBase();
private:
- Vector<RefPtr<JSONValue> > m_data;
+ Vector<RefPtr<JSONValue>> m_data;
};
class PLATFORM_EXPORT JSONArray : public JSONArrayBase {
« no previous file with comments | « Source/platform/CrossThreadCopier.h ('k') | Source/platform/JSONValues.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698