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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp

Issue 2572603002: ABANDONED CL: Rename readyState() to getReadyState(). (Closed)
Patch Set: Created 4 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: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
index f9b80b66a11eadf7d99f101c73ffadaea25ad970..49d058aadcb9b5dcf8f32cfa6ad086a80804ea5b 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
@@ -711,7 +711,7 @@ std::unique_ptr<TracedValue> InspectorXhrReadyStateChangeEvent::data(
XMLHttpRequest* request) {
std::unique_ptr<TracedValue> value = TracedValue::create();
value->setString("url", request->url().getString());
- value->setInteger("readyState", request->readyState());
+ value->setInteger("readyState", request->getReadyState());
if (LocalFrame* frame = frameForExecutionContext(context))
value->setString("frame", toHexString(frame));
setCallStack(value.get());

Powered by Google App Engine
This is Rietveld 408576698