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

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
« no previous file with comments | « Source/WebCore/bindings/dart/DartDOMWrapper.h ('k') | Source/WebCore/bindings/dart/DartEventListener.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/bindings/dart/DartDebugServer.cpp
diff --git a/Source/WebCore/bindings/dart/DartDebugServer.cpp b/Source/WebCore/bindings/dart/DartDebugServer.cpp
index f20c6f3b77590e85482264214b10ffc7bc4fba82..078b81cf35234bc4b8f8703c2397343cfe06f6be 100644
--- a/Source/WebCore/bindings/dart/DartDebugServer.cpp
+++ b/Source/WebCore/bindings/dart/DartDebugServer.cpp
@@ -473,7 +473,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);
« no previous file with comments | « Source/WebCore/bindings/dart/DartDOMWrapper.h ('k') | Source/WebCore/bindings/dart/DartEventListener.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698