Index: content/renderer/devtools/devtools_cpu_throttler.h |
diff --git a/content/renderer/devtools/devtools_cpu_throttler.h b/content/renderer/devtools/devtools_cpu_throttler.h |
index 78c901a5928526afbf646c7f7cda77cef9b6ae7c..28e1e61381575d423e64e5b368d00b26542394e7 100644 |
--- a/content/renderer/devtools/devtools_cpu_throttler.h |
+++ b/content/renderer/devtools/devtools_cpu_throttler.h |
@@ -5,8 +5,9 @@ |
#ifndef CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CPU_THROTTLER_H_ |
#define CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CPU_THROTTLER_H_ |
+#include <memory> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "content/common/content_export.h" |
namespace content { |
@@ -21,7 +22,7 @@ class CONTENT_EXPORT DevToolsCPUThrottler final { |
void SetThrottlingRate(double rate); |
private: |
- scoped_ptr<CPUThrottlingThread> throttling_thread_; |
+ std::unique_ptr<CPUThrottlingThread> throttling_thread_; |
DISALLOW_COPY_AND_ASSIGN(DevToolsCPUThrottler); |
}; |