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

Unified Diff: Source/core/inspector/CodeGeneratorInspectorStrings.py

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/CodeGeneratorInspector.py ('k') | Source/core/inspector/ConsoleMessageStorage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/CodeGeneratorInspectorStrings.py
diff --git a/Source/core/inspector/CodeGeneratorInspectorStrings.py b/Source/core/inspector/CodeGeneratorInspectorStrings.py
index 0b87c6c67aa81fdb6d0cc72781f7814871773933..dccbb326aaeb96443e7a98218894201416869e5a 100644
--- a/Source/core/inspector/CodeGeneratorInspectorStrings.py
+++ b/Source/core/inspector/CodeGeneratorInspectorStrings.py
@@ -602,12 +602,12 @@ public:
ArrayItemHelper<T>::Traits::pushRaw(this->openAccessors(), value);
}
- static PassRefPtr<Array<T> > create()
+ static PassRefPtr<Array<T>> create()
{
return adoptRef(new Array<T>());
}
- static PassRefPtr<Array<T> > runtimeCast(PassRefPtr<JSONValue> value)
+ static PassRefPtr<Array<T>> runtimeCast(PassRefPtr<JSONValue> value)
{
RefPtr<JSONArray> array;
bool castRes = value->asArray(&array);
@@ -619,7 +619,7 @@ public:
return static_cast<Array<T>*>(static_cast<JSONArrayBase*>(array.get()));
}
- void concat(PassRefPtr<Array<T> > array)
+ void concat(PassRefPtr<Array<T>> array)
{
return ArrayItemHelper<T>::Traits::concat(this->openAccessors(), array->openAccessors());
}
@@ -777,9 +777,9 @@ struct ArrayItemHelper<JSONArray> {
};
template<typename T>
-struct ArrayItemHelper<TypeBuilder::Array<T> > {
+struct ArrayItemHelper<TypeBuilder::Array<T>> {
struct Traits {
- static void pushRefPtr(JSONArray* array, PassRefPtr<TypeBuilder::Array<T> > value)
+ static void pushRefPtr(JSONArray* array, PassRefPtr<TypeBuilder::Array<T>> value)
{
array->pushValue(value);
}
« no previous file with comments | « Source/core/inspector/CodeGeneratorInspector.py ('k') | Source/core/inspector/ConsoleMessageStorage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698