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

Unified Diff: Source/bindings/core/v8/ScriptValueSerializer.h

Issue 921813002: Fix template angle bracket syntax in bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/bindings/core/v8/ScriptValue.h ('k') | Source/bindings/core/v8/SerializedScriptValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptValueSerializer.h
diff --git a/Source/bindings/core/v8/ScriptValueSerializer.h b/Source/bindings/core/v8/ScriptValueSerializer.h
index d0c044175a91b4c185cecd65a40b67d29a52d918..f90450a7f30d9a9dbbc20f0a508fc2974bae1f14 100644
--- a/Source/bindings/core/v8/ScriptValueSerializer.h
+++ b/Source/bindings/core/v8/ScriptValueSerializer.h
@@ -85,7 +85,7 @@ private:
static const bool safeToCompareToEmptyOrDeleted = false;
};
- typedef WTF::HashMap<GCObject*, T, V8HandlePtrHash<GCObject> > HandleToT;
+ typedef WTF::HashMap<GCObject*, T, V8HandlePtrHash<GCObject>> HandleToT;
HandleToT m_map;
};
@@ -566,12 +566,12 @@ private:
bool closeComposite(v8::Handle<v8::Value>*);
SerializedScriptValueReader& m_reader;
- Vector<v8::Local<v8::Value> > m_stack;
- Vector<v8::Handle<v8::Value> > m_objectPool;
+ Vector<v8::Local<v8::Value>> m_stack;
+ Vector<v8::Handle<v8::Value>> m_objectPool;
Vector<uint32_t> m_openCompositeReferenceStack;
RawPtrWillBeMember<MessagePortArray> m_transferredMessagePorts;
ArrayBufferContentsArray* m_arrayBufferContents;
- Vector<v8::Handle<v8::Value> > m_arrayBuffers;
+ Vector<v8::Handle<v8::Value>> m_arrayBuffers;
uint32_t m_version;
};
« no previous file with comments | « Source/bindings/core/v8/ScriptValue.h ('k') | Source/bindings/core/v8/SerializedScriptValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698