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

Unified Diff: third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp

Issue 1381023002: NOCOMMIT: Blink tracing now uses base Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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/graphics/ContentLayerDelegate.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp b/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp
index 85ae04aeee50cd0a57ae8673519fb9aa9416631c..4ce147a7517751746cb5e647e862a59f1f0216f8 100644
--- a/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp
+++ b/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.cpp
@@ -53,9 +53,9 @@ ContentLayerDelegate::~ContentLayerDelegate()
{
}
-PassRefPtr<TracedValue> toTracedValue(const WebRect& clip)
+scoped_refptr<TracedValue> toTracedValue(const WebRect& clip)
{
- RefPtr<TracedValue> tracedValue = TracedValue::create();
+ scoped_refptr<TracedValue> tracedValue = TracedValue::create();
tracedValue->beginArray("clip_rect");
tracedValue->pushInteger(clip.x);
tracedValue->pushInteger(clip.y);

Powered by Google App Engine
This is Rietveld 408576698