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

Unified Diff: third_party/WebKit/Source/platform/TracedValueTest.cpp

Issue 1620673002: Remove Blink's ConvertableToTraceFormat (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: third_party/WebKit/Source/platform/TracedValueTest.cpp
diff --git a/third_party/WebKit/Source/platform/TracedValueTest.cpp b/third_party/WebKit/Source/platform/TracedValueTest.cpp
index 0be63a2da387ba2ffd6bc08728ac9d2743594c36..a29ac62e27d37edeffdce664133168f9dc9929c1 100644
--- a/third_party/WebKit/Source/platform/TracedValueTest.cpp
+++ b/third_party/WebKit/Source/platform/TracedValueTest.cpp
@@ -13,7 +13,7 @@ namespace blink {
scoped_ptr<base::Value> parseTracedValue(PassRefPtr<TracedValue> value)
{
base::JSONReader reader;
- CString utf8 = value->asTraceFormat().utf8();
+ CString utf8 = value->toString().utf8();
return reader.Read(utf8.data());
}

Powered by Google App Engine
This is Rietveld 408576698