| OLD | NEW |
| (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 | |
| OLD | NEW |