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

Unified Diff: third_party/WebKit/Source/platform/EventTracer.h

Issue 1717283003: tracing: Make ConvertableToTraceFormat move-only scoped_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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: third_party/WebKit/Source/platform/EventTracer.h
diff --git a/third_party/WebKit/Source/platform/EventTracer.h b/third_party/WebKit/Source/platform/EventTracer.h
index ec4dcdc08e9eb6b02fbd0a4288a4d8f9bec864b6..fe589b213a13761e73f7f62acefbd0a62ece670a 100644
--- a/third_party/WebKit/Source/platform/EventTracer.h
+++ b/third_party/WebKit/Source/platform/EventTracer.h
@@ -31,7 +31,7 @@
#ifndef EventTracer_h
#define EventTracer_h
-#include "base/memory/ref_counted.h"
+#include "base/memory/scoped_ptr.h"
#include "platform/PlatformExport.h"
#include "wtf/Allocator.h"
#include "wtf/PassOwnPtr.h"
@@ -109,7 +109,7 @@ private:
const char* argNames[],
const unsigned char argTypes[],
const unsigned long long argValues[],
- const scoped_refptr<base::trace_event::ConvertableToTraceFormat>* convertables,
+ scoped_ptr<base::trace_event::ConvertableToTraceFormat>* convertables,
unsigned flags);
};

Powered by Google App Engine
This is Rietveld 408576698