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

Unified Diff: Source/core/inspector/InspectorResourceAgent.cpp

Issue 166903010: Oilpan: Move core/xml/ to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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/core/inspector/InspectorResourceAgent.cpp
diff --git a/Source/core/inspector/InspectorResourceAgent.cpp b/Source/core/inspector/InspectorResourceAgent.cpp
index d192d71c202b00e497ab080331f74f53c7c5350a..41e015a0aa53fbb7a9bc9ce6cf5ecf7cfe9ecd69 100644
--- a/Source/core/inspector/InspectorResourceAgent.cpp
+++ b/Source/core/inspector/InspectorResourceAgent.cpp
@@ -668,7 +668,7 @@ void InspectorResourceAgent::replayXHR(ErrorString*, const String& requestId)
return;
}
- RefPtr<XMLHttpRequest> xhr = XMLHttpRequest::create(executionContext);
+ RefPtrWillBeRawPtr<XMLHttpRequest> xhr = XMLHttpRequest::create(executionContext);
Resource* cachedResource = memoryCache()->resourceForURL(xhrReplayData->url());
if (cachedResource)

Powered by Google App Engine
This is Rietveld 408576698