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

Unified Diff: vm/symbols.h

Issue 11443005: Issue - 7123 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years 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
Index: vm/symbols.h
===================================================================
--- vm/symbols.h (revision 15744)
+++ vm/symbols.h (working copy)
@@ -216,7 +216,11 @@
// Helper functions to create a symbol given a string or set of characters.
template<typename T>
cshapiro 2012/12/05 20:40:16 I would rename T to CharacterType and add a Callba
siva 2012/12/05 23:33:14 Done.
- static RawString* NewSymbol(const T* characters, intptr_t len);
+ static RawString* NewSymbol(const T* characters,
+ intptr_t len,
+ RawString* (*New)(const T* chars,
cshapiro 2012/12/05 20:40:16 s/New/new_string/ (Can't call it new because that
siva 2012/12/05 23:33:14 Done.
+ intptr_t len,
+ Heap::Space space));
// Add the string into the VM isolate symbol table.
static void Add(const Array& symbol_table, const String& str);

Powered by Google App Engine
This is Rietveld 408576698