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

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

Issue 2866853002: VR: Wire VrShell UI-related state to the scene manager. (Closed)
Patch Set: Rebase; remove now-unused source file. Created 3 years, 7 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
« no previous file with comments | « chrome/browser/android/vr_shell/ui_interface.h ('k') | chrome/browser/android/vr_shell/ui_scene_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/vr_shell/ui_interface.cc
diff --git a/chrome/browser/android/vr_shell/ui_interface.cc b/chrome/browser/android/vr_shell/ui_interface.cc
deleted file mode 100644
index b1ecd362726b330bb56dc19c6727511df2760b65..0000000000000000000000000000000000000000
--- a/chrome/browser/android/vr_shell/ui_interface.cc
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/android/vr_shell/ui_interface.h"
-
-#include "url/gurl.h"
-
-namespace vr_shell {
-
-UiInterface::UiInterface(Mode initial_mode) : mode_(initial_mode) {}
-
-void UiInterface::SetMode(Mode mode) {
- mode_ = mode;
-}
-
-void UiInterface::SetFullscreen(bool enabled) {
- fullscreen_ = enabled;
-}
-
-void UiInterface::SetSecurityLevel(int level) {}
-
-void UiInterface::SetWebVRSecureOrigin(bool secure) {}
-
-void UiInterface::SetLoading(bool loading) {}
-
-void UiInterface::SetLoadProgress(double progress) {}
-
-void UiInterface::InitTabList() {}
-
-void UiInterface::AppendToTabList(bool incognito,
- int id,
- const base::string16& title) {}
-
-void UiInterface::UpdateTab(bool incognito, int id, const std::string& title) {}
-
-void UiInterface::FlushTabList() {}
-
-void UiInterface::RemoveTab(bool incognito, int id) {}
-
-void UiInterface::SetURL(const GURL& url) {}
-
-void UiInterface::HandleAppButtonGesturePerformed(Direction direction) {}
-
-void UiInterface::SetHistoryButtonsEnabled(bool can_go_back,
- bool can_go_forward) {}
-
-} // namespace vr_shell
« no previous file with comments | « chrome/browser/android/vr_shell/ui_interface.h ('k') | chrome/browser/android/vr_shell/ui_scene_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698