| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/android/vr_shell/ui_interface.h" | 5 #include "chrome/browser/android/vr_shell/ui_interface.h" |
| 6 | 6 |
| 7 #include "url/gurl.h" | 7 #include "url/gurl.h" |
| 8 | 8 |
| 9 namespace vr_shell { | 9 namespace vr_shell { |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 void UiInterface::UpdateTab(bool incognito, int id, const std::string& title) {} | 35 void UiInterface::UpdateTab(bool incognito, int id, const std::string& title) {} |
| 36 | 36 |
| 37 void UiInterface::FlushTabList() {} | 37 void UiInterface::FlushTabList() {} |
| 38 | 38 |
| 39 void UiInterface::RemoveTab(bool incognito, int id) {} | 39 void UiInterface::RemoveTab(bool incognito, int id) {} |
| 40 | 40 |
| 41 void UiInterface::SetURL(const GURL& url) {} | 41 void UiInterface::SetURL(const GURL& url) {} |
| 42 | 42 |
| 43 void UiInterface::HandleAppButtonGesturePerformed(Direction direction) {} | 43 void UiInterface::HandleAppButtonGesturePerformed(Direction direction) {} |
| 44 | 44 |
| 45 void UiInterface::HandleAppButtonClicked() {} | |
| 46 | |
| 47 void UiInterface::SetHistoryButtonsEnabled(bool can_go_back, | 45 void UiInterface::SetHistoryButtonsEnabled(bool can_go_back, |
| 48 bool can_go_forward) {} | 46 bool can_go_forward) {} |
| 49 | 47 |
| 50 } // namespace vr_shell | 48 } // namespace vr_shell |
| OLD | NEW |