| Index: chrome/browser/autofill/autofill_browsertest.cc
|
| diff --git a/chrome/browser/autofill/autofill_browsertest.cc b/chrome/browser/autofill/autofill_browsertest.cc
|
| index 526b72c842883475e0421531d3ea0c779c72970d..6b5c4f8abaa7f42b6e278a31c07507975617856d 100644
|
| --- a/chrome/browser/autofill/autofill_browsertest.cc
|
| +++ b/chrome/browser/autofill/autofill_browsertest.cc
|
| @@ -4,12 +4,12 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/command_line.h"
|
| #include "base/files/file_util.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/rand_util.h"
|
| #include "base/run_loop.h"
|
| #include "base/strings/string16.h"
|
| @@ -180,7 +180,7 @@ class AutofillTest : public InProcessBrowserTest {
|
| params.disposition = NEW_FOREGROUND_TAB;
|
| ui_test_utils::NavigateToURL(¶ms);
|
|
|
| - scoped_ptr<WindowedPersonalDataManagerObserver> observer;
|
| + std::unique_ptr<WindowedPersonalDataManagerObserver> observer;
|
| if (expect_personal_data_change)
|
| observer.reset(new WindowedPersonalDataManagerObserver(browser()));
|
|
|
|
|