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

Unified Diff: Source/WebCore/bindings/dart/DartDebugServer.cpp

Issue 10660025: Cleanup dart to string conversions. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: . Created 8 years, 6 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
Index: Source/WebCore/bindings/dart/DartDebugServer.cpp
diff --git a/Source/WebCore/bindings/dart/DartDebugServer.cpp b/Source/WebCore/bindings/dart/DartDebugServer.cpp
index b5eb38f7428f7961007a6ba781383ae0d25ffebf..72dc1f5ec0aed570305380bb584bbb12e4503c01 100644
--- a/Source/WebCore/bindings/dart/DartDebugServer.cpp
+++ b/Source/WebCore/bindings/dart/DartDebugServer.cpp
@@ -471,7 +471,7 @@ static v8::Handle<v8::Value> scriptsForIsolate(const v8::Arguments& args)
Dart_Handle libraryURL = Dart_GetLibraryURL(libraryId);
ASSERT(Dart_IsString(libraryURL));
- if (ignoreStandardLibraries && DartUtilities::dartStringToString(libraryURL).startsWith("dart:"))
+ if (ignoreStandardLibraries && DartUtilities::toString(libraryURL).startsWith("dart:"))
continue;
Dart_Handle scripts = Dart_GetScriptURLs(libraryURL);

Powered by Google App Engine
This is Rietveld 408576698