| 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);
|
| }
|
|
|