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

Unified Diff: content/browser/android/synchronous_compositor_base.h

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: content/browser/android/synchronous_compositor_base.h
diff --git a/content/browser/android/synchronous_compositor_base.h b/content/browser/android/synchronous_compositor_base.h
index 218e82199daeecba3201b093b032122dd39c25e2..00aae21ba93754e25c2f9c5fbfb298d9db3d3ab3 100644
--- a/content/browser/android/synchronous_compositor_base.h
+++ b/content/browser/android/synchronous_compositor_base.h
@@ -5,7 +5,8 @@
#ifndef CONTENT_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_BASE_H_
#define CONTENT_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_BASE_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "content/common/input/input_event_ack_state.h"
#include "content/public/browser/android/synchronous_compositor.h"
@@ -30,7 +31,7 @@ struct DidOverscrollParams;
class SynchronousCompositorBase : public SynchronousCompositor {
public:
- static scoped_ptr<SynchronousCompositorBase> Create(
+ static std::unique_ptr<SynchronousCompositorBase> Create(
RenderWidgetHostViewAndroid* rwhva,
WebContents* web_contents);
« no previous file with comments | « content/browser/android/popup_touch_handle_drawable.cc ('k') | content/browser/android/synchronous_compositor_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698