| Index: chrome/browser/ui/cocoa/autofill/autofill_section_view_unittest.mm
|
| diff --git a/chrome/browser/ui/cocoa/autofill/autofill_section_view_unittest.mm b/chrome/browser/ui/cocoa/autofill/autofill_section_view_unittest.mm
|
| index 13486b4125f1eed03624a8e3308aa5de580cd556..7fcc1ca590741dc5aca4d9b712d7c3939f72a70d 100644
|
| --- a/chrome/browser/ui/cocoa/autofill/autofill_section_view_unittest.mm
|
| +++ b/chrome/browser/ui/cocoa/autofill/autofill_section_view_unittest.mm
|
| @@ -4,8 +4,9 @@
|
|
|
| #import "chrome/browser/ui/cocoa/autofill/autofill_section_view.h"
|
|
|
| +#include <memory>
|
| +
|
| #include "base/mac/scoped_nsobject.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "testing/gtest_mac.h"
|
| #include "testing/platform_test.h"
|
| @@ -77,7 +78,7 @@ class AutofillSectionViewTest : public ui::CocoaTest {
|
| protected:
|
| base::scoped_nsobject<AutofillSectionView> view_;
|
| base::scoped_nsobject<NSBitmapImageRep> bitmap_;
|
| - scoped_ptr<gfx::ScopedNSGraphicsContextSaveGState> saved_context_;
|
| + std::unique_ptr<gfx::ScopedNSGraphicsContextSaveGState> saved_context_;
|
| NSGraphicsContext* context_;
|
| };
|
|
|
|
|