Index: content/renderer/java/gin_java_function_invocation_helper.h |
diff --git a/content/renderer/java/gin_java_function_invocation_helper.h b/content/renderer/java/gin_java_function_invocation_helper.h |
index 823420d568435c3b05b40f6713bc9f7e213170d9..b74083c0bca5c5b0b57677e075cb30818e3486e4 100644 |
--- a/content/renderer/java/gin_java_function_invocation_helper.h |
+++ b/content/renderer/java/gin_java_function_invocation_helper.h |
@@ -5,8 +5,9 @@ |
#ifndef CONTENT_RENDERER_JAVA_GIN_JAVA_FUNCTION_INVOCATION_HELPER_H_ |
#define CONTENT_RENDERER_JAVA_GIN_JAVA_FUNCTION_INVOCATION_HELPER_H_ |
+#include <memory> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
#include "content/renderer/java/gin_java_bridge_dispatcher.h" |
#include "gin/arguments.h" |
@@ -28,7 +29,7 @@ class GinJavaFunctionInvocationHelper { |
private: |
std::string method_name_; |
base::WeakPtr<GinJavaBridgeDispatcher> dispatcher_; |
- scoped_ptr<GinJavaBridgeValueConverter> converter_; |
+ std::unique_ptr<GinJavaBridgeValueConverter> converter_; |
DISALLOW_COPY_AND_ASSIGN(GinJavaFunctionInvocationHelper); |
}; |