| Index: content/browser/renderer_host/pepper/pepper_printing_host.cc
|
| diff --git a/content/browser/renderer_host/pepper/pepper_printing_host.cc b/content/browser/renderer_host/pepper/pepper_printing_host.cc
|
| index 047f1203d7288128116a435ea06e4169d0f4ceab..5f9fcaabdff29679b1dfeaab9c1516b797c4cab7 100644
|
| --- a/content/browser/renderer_host/pepper/pepper_printing_host.cc
|
| +++ b/content/browser/renderer_host/pepper/pepper_printing_host.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/renderer_host/pepper/pepper_printing_host.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "ppapi/c/dev/pp_print_settings_dev.h"
|
| #include "ppapi/c/pp_errors.h"
|
| #include "ppapi/host/dispatch_host_message.h"
|
| @@ -19,7 +21,7 @@ PepperPrintingHost::PepperPrintingHost(
|
| PP_Resource resource,
|
| scoped_ptr<PepperPrintSettingsManager> print_settings_manager)
|
| : ResourceHost(host, instance, resource),
|
| - print_settings_manager_(print_settings_manager.Pass()),
|
| + print_settings_manager_(std::move(print_settings_manager)),
|
| weak_factory_(this) {}
|
|
|
| PepperPrintingHost::~PepperPrintingHost() {}
|
|
|