| Index: ash/host/ash_window_tree_host_unified.cc
|
| diff --git a/ash/host/ash_window_tree_host_unified.cc b/ash/host/ash_window_tree_host_unified.cc
|
| index f94d1e277ed1a92baeb3add43a9dea36ad36214c..ab9a954e8931e6cc9b055835916935e62039cd46 100644
|
| --- a/ash/host/ash_window_tree_host_unified.cc
|
| +++ b/ash/host/ash_window_tree_host_unified.cc
|
| @@ -3,6 +3,9 @@
|
| // found in the LICENSE file.
|
|
|
| #include "ash/host/ash_window_tree_host_unified.h"
|
| +
|
| +#include <utility>
|
| +
|
| #include "ash/host/root_window_transformer.h"
|
| #include "ash/ime/input_method_event_handler.h"
|
| #include "base/logging.h"
|
| @@ -91,7 +94,7 @@ void AshWindowTreeHostUnified::UnConfineCursor() {
|
|
|
| void AshWindowTreeHostUnified::SetRootWindowTransformer(
|
| scoped_ptr<RootWindowTransformer> transformer) {
|
| - transformer_helper_.SetRootWindowTransformer(transformer.Pass());
|
| + transformer_helper_.SetRootWindowTransformer(std::move(transformer));
|
| }
|
|
|
| gfx::Insets AshWindowTreeHostUnified::GetHostInsets() const {
|
|
|