Index: content/public/browser/screen_orientation_provider.h |
diff --git a/content/public/browser/screen_orientation_provider.h b/content/public/browser/screen_orientation_provider.h |
index 75f8a3992d9678630eb3f0b3a7d6a046f25b0d16..463fc82786656d2d6a74d4b739779d09a230a1f8 100644 |
--- a/content/public/browser/screen_orientation_provider.h |
+++ b/content/public/browser/screen_orientation_provider.h |
@@ -5,8 +5,9 @@ |
#ifndef CONTENT_PUBLIC_BROWSER_SCREEN_ORIENTATION_PROVIDER_H_ |
#define CONTENT_PUBLIC_BROWSER_SCREEN_ORIENTATION_PROVIDER_H_ |
+#include <memory> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "content/common/content_export.h" |
#include "content/public/browser/web_contents_observer.h" |
#include "third_party/WebKit/public/platform/modules/screen_orientation/WebScreenOrientationLockType.h" |
@@ -71,7 +72,7 @@ class CONTENT_EXPORT ScreenOrientationProvider : public WebContentsObserver { |
// Locks that require orientation changes are not completed until |
// OnOrientationChange. |
- scoped_ptr<LockInformation> pending_lock_; |
+ std::unique_ptr<LockInformation> pending_lock_; |
DISALLOW_COPY_AND_ASSIGN(ScreenOrientationProvider); |
}; |