| Index: content/public/renderer/render_frame.h
|
| diff --git a/content/public/renderer/render_frame.h b/content/public/renderer/render_frame.h
|
| index 3450931dd66c4cf2f9fa2c7baf30db9c37368b31..4450f0391d3354a84432c7f70fe9c4c5842821ab 100644
|
| --- a/content/public/renderer/render_frame.h
|
| +++ b/content/public/renderer/render_frame.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/callback_forward.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/strings/string16.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/common/console_message_level.h"
|
| @@ -126,7 +127,7 @@ class CONTENT_EXPORT RenderFrame : public IPC::Listener,
|
| blink::WebFrame* frame,
|
| const WebPluginInfo& info,
|
| const blink::WebPluginParams& params,
|
| - scoped_ptr<PluginInstanceThrottler> throttler) = 0;
|
| + std::unique_ptr<PluginInstanceThrottler> throttler) = 0;
|
|
|
| // The client should handle the navigation externally.
|
| virtual void LoadURLExternally(const blink::WebURLRequest& request,
|
|
|