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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/android/vr_shell/ui_interface.h"
6
7 #include "url/gurl.h"
8
9 namespace vr_shell {
10
11 UiInterface::UiInterface(Mode initial_mode) : mode_(initial_mode) {}
12
13 void UiInterface::SetMode(Mode mode) {
14 mode_ = mode;
15 }
16
17 void UiInterface::SetFullscreen(bool enabled) {
18 fullscreen_ = enabled;
19 }
20
21 void UiInterface::SetSecurityLevel(int level) {}
22
23 void UiInterface::SetWebVRSecureOrigin(bool secure) {}
24
25 void UiInterface::SetLoading(bool loading) {}
26
27 void UiInterface::SetLoadProgress(double progress) {}
28
29 void UiInterface::InitTabList() {}
30
31 void UiInterface::AppendToTabList(bool incognito,
32 int id,
33 const base::string16& title) {}
34
35 void UiInterface::UpdateTab(bool incognito, int id, const std::string& title) {}
36
37 void UiInterface::FlushTabList() {}
38
39 void UiInterface::RemoveTab(bool incognito, int id) {}
40
41 void UiInterface::SetURL(const GURL& url) {}
42
43 void UiInterface::HandleAppButtonGesturePerformed(Direction direction) {}
44
45 void UiInterface::SetHistoryButtonsEnabled(bool can_go_back,
46 bool can_go_forward) {}
47
48 } // namespace vr_shell
OLDNEW
« 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