| Index: ui/views/examples/examples_window.h
|
| diff --git a/ui/views/examples/examples_window.h b/ui/views/examples/examples_window.h
|
| index 339389502f5a75a4c97f525d52a16c8bd07d7b4a..d35b8fc9a9d1b1ff2525db6f38f0af545f5fac9d 100644
|
| --- a/ui/views/examples/examples_window.h
|
| +++ b/ui/views/examples/examples_window.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef UI_VIEWS_EXAMPLES_EXAMPLES_WINDOW_H_
|
| #define UI_VIEWS_EXAMPLES_EXAMPLES_WINDOW_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "base/memory/scoped_vector.h"
|
| #include "ui/gfx/native_widget_types.h"
|
| #include "ui/views/examples/views_examples_export.h"
|
| @@ -30,7 +31,7 @@ enum Operation {
|
| VIEWS_EXAMPLES_EXPORT void ShowExamplesWindow(
|
| Operation operation,
|
| gfx::NativeWindow window_context,
|
| - scoped_ptr<ScopedVector<ExampleBase> > extra_examples);
|
| + std::unique_ptr<ScopedVector<ExampleBase>> extra_examples);
|
|
|
| } // namespace examples
|
| } // namespace views
|
|
|