Index: content/browser/android/child_process_launcher_android.cc |
diff --git a/content/browser/android/child_process_launcher_android.cc b/content/browser/android/child_process_launcher_android.cc |
index 6faab5a5795f0dfbfd079000ddce42451d93d403..0d9d1a3870c99b9711d68e25c03dc0661a0ed84e 100644 |
--- a/content/browser/android/child_process_launcher_android.cc |
+++ b/content/browser/android/child_process_launcher_android.cc |
@@ -6,6 +6,7 @@ |
#include <stddef.h> |
#include <stdint.h> |
+#include <utility> |
#include "base/android/context_utils.h" |
#include "base/android/jni_android.h" |
@@ -80,7 +81,7 @@ static void SetSurfacePeer( |
if (player != player_manager->GetFullscreenPlayer()) { |
gfx::ScopedJavaSurface scoped_surface(surface); |
- player->SetVideoSurface(scoped_surface.Pass()); |
+ player->SetVideoSurface(std::move(scoped_surface)); |
} |
#else |
NOTREACHED(); |