Index: ui/views/controls/native/native_view_host_aura.h |
diff --git a/ui/views/controls/native/native_view_host_aura.h b/ui/views/controls/native/native_view_host_aura.h |
index 67d7756397ca1d06f186b0e1e1251cbdd5b8fbcf..45e859082eb7ddd2b551d384c254d48e6087df35 100644 |
--- a/ui/views/controls/native/native_view_host_aura.h |
+++ b/ui/views/controls/native/native_view_host_aura.h |
@@ -57,13 +57,13 @@ class VIEWS_EXPORT NativeViewHostAura : public NativeViewHostWrapper, |
// Our associated NativeViewHost. |
NativeViewHost* host_; |
- scoped_ptr<ClippingWindowDelegate> clipping_window_delegate_; |
+ std::unique_ptr<ClippingWindowDelegate> clipping_window_delegate_; |
// Window that exists between the native view and the parent that allows for |
// clipping to occur. This is positioned in the coordinate space of |
// host_->GetWidget(). |
aura::Window clipping_window_; |
- scoped_ptr<gfx::Rect> clip_rect_; |
+ std::unique_ptr<gfx::Rect> clip_rect_; |
DISALLOW_COPY_AND_ASSIGN(NativeViewHostAura); |
}; |