Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: chrome/browser/android/vr_shell/vr_shell_gl.cc

Issue 2757213003: Implementing glTF 1.0 parser (Closed)
Patch Set: Moving glTF test data to a file. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/android/vr_shell/vr_shell_gl.cc
diff --git a/chrome/browser/android/vr_shell/vr_shell_gl.cc b/chrome/browser/android/vr_shell/vr_shell_gl.cc
index c0210b93c8f98dc21ea8228412b3e9cfbd978938..3ad089d3a949100585e4d9a31b42ff2fee83d26c 100644
--- a/chrome/browser/android/vr_shell/vr_shell_gl.cc
+++ b/chrome/browser/android/vr_shell/vr_shell_gl.cc
@@ -4,6 +4,7 @@
#include "chrome/browser/android/vr_shell/vr_shell_gl.h"
+#include <chrono>
#include <limits>
#include <utility>
@@ -187,7 +188,7 @@ VrShellGl::~VrShellGl() {
}
void VrShellGl::Initialize() {
- scene_.reset(new UiScene);
+ scene_ = base::MakeUnique<UiScene>();
if (surfaceless_rendering_) {
// If we're rendering surfaceless, we'll never get a java surface to render

Powered by Google App Engine
This is Rietveld 408576698