Index: content/browser/web_contents/aura/shadow_layer_delegate.h |
diff --git a/content/browser/web_contents/aura/shadow_layer_delegate.h b/content/browser/web_contents/aura/shadow_layer_delegate.h |
index 3f4775913805dda9c2c809e045c348fa6a9fd902..6c1729f3e537b1c5215212b5d4784f6cc5688ba8 100644 |
--- a/content/browser/web_contents/aura/shadow_layer_delegate.h |
+++ b/content/browser/web_contents/aura/shadow_layer_delegate.h |
@@ -5,9 +5,10 @@ |
#ifndef CONTENT_BROWSER_WEB_CONTENTS_AURA_SHADOW_LAYER_DELEGATE_H_ |
#define CONTENT_BROWSER_WEB_CONTENTS_AURA_SHADOW_LAYER_DELEGATE_H_ |
+#include <memory> |
+ |
#include "base/compiler_specific.h" |
#include "base/macros.h" |
-#include "base/memory/scoped_ptr.h" |
#include "ui/compositor/layer_delegate.h" |
namespace aura { |
@@ -38,7 +39,7 @@ class ShadowLayerDelegate : public ui::LayerDelegate { |
void OnDeviceScaleFactorChanged(float device_scale_factor) override; |
base::Closure PrepareForLayerBoundsChange() override; |
- scoped_ptr<ui::Layer> layer_; |
+ std::unique_ptr<ui::Layer> layer_; |
DISALLOW_COPY_AND_ASSIGN(ShadowLayerDelegate); |
}; |