| Index: chrome/browser/chromeos/file_system_provider/operations/test_util.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/test_util.h b/chrome/browser/chromeos/file_system_provider/operations/test_util.h
|
| index 73c753cc5a4859be208bb624e19acdf390cbea8b..4bd6f0c7e98da6fde76b6ea51781928d019ba225 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/test_util.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/test_util.h
|
| @@ -5,11 +5,11 @@
|
| #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_TEST_UTIL_H_
|
| #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_TEST_UTIL_H_
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/files/file.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/scoped_vector.h"
|
|
|
| namespace extensions {
|
| @@ -29,7 +29,7 @@ class LoggingDispatchEventImpl {
|
| virtual ~LoggingDispatchEventImpl();
|
|
|
| // Handles sending an event to a providing extension.
|
| - bool OnDispatchEventImpl(scoped_ptr<extensions::Event> event);
|
| + bool OnDispatchEventImpl(std::unique_ptr<extensions::Event> event);
|
|
|
| // Returns events sent to providing extensions.
|
| ScopedVector<extensions::Event>& events() { return events_; }
|
|
|