| Index: chrome/browser/android/vr_shell/vr_compositor.cc
|
| diff --git a/chrome/browser/android/vr_shell/vr_compositor.cc b/chrome/browser/android/vr_shell/vr_compositor.cc
|
| index 6681e8d340d0ec573e1fd6d55f210358e5bffabd..9d5d05e29802743fde8a8dc4b41f32b615bbaa6f 100644
|
| --- a/chrome/browser/android/vr_shell/vr_compositor.cc
|
| +++ b/chrome/browser/android/vr_shell/vr_compositor.cc
|
| @@ -10,8 +10,6 @@
|
| #include "third_party/skia/include/core/SkColor.h"
|
| #include "ui/android/window_android.h"
|
|
|
| -using base::android::JavaParamRef;
|
| -
|
| namespace vr_shell {
|
|
|
| VrCompositor::VrCompositor(ui::WindowAndroid* window, bool transparent)
|
| @@ -60,7 +58,7 @@ void VrCompositor::SetWindowBounds(int width, int height) {
|
| compositor_->SetWindowBounds(gfx::Size(width, height));
|
| }
|
|
|
| -void VrCompositor::SurfaceChanged(const JavaParamRef<jobject>& surface) {
|
| +void VrCompositor::SurfaceChanged(jobject surface) {
|
| DCHECK(surface);
|
| compositor_->SetSurface(surface);
|
| }
|
|
|