| Index: third_party/WebKit/Source/modules/vr/VRDisplay.cpp
|
| diff --git a/third_party/WebKit/Source/modules/vr/VRDisplay.cpp b/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
|
| index c35e7f133671d7e0e39b8124b7fbd0ee82798014..21398f317ad8eab792190543690707496e716c2f 100644
|
| --- a/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
|
| +++ b/third_party/WebKit/Source/modules/vr/VRDisplay.cpp
|
| @@ -580,7 +580,7 @@ HeapVector<VRLayer> VRDisplay::getLayers() {
|
| HeapVector<VRLayer> layers;
|
|
|
| if (m_isPresenting) {
|
| - layers.append(m_layer);
|
| + layers.push_back(m_layer);
|
| }
|
|
|
| return layers;
|
|
|