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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellInterface.java

Issue 2417743003: Remove Interface from file names and add Impl to actual implementation (Closed)
Patch Set: nit Created 4 years, 2 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/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellInterface.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellInterface.java b/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellInterface.java
deleted file mode 100644
index 0e5c77aa069912c15c2ed573db6c1656fe379e7c..0000000000000000000000000000000000000000
--- a/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellInterface.java
+++ /dev/null
@@ -1,50 +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.
-
-package org.chromium.chrome.browser.vr_shell;
-
-import android.widget.FrameLayout;
-
-import org.chromium.chrome.browser.tab.Tab;
-
-/**
- * Abstracts away the VrShell class, which may or may not be present at runtime depending on
- * compile flags.
- */
-public interface VrShellInterface {
- /**
- * Performs native VrShell initialization.
- */
- void initializeNative(Tab currentTab, VrShellDelegate delegate);
-
- /**
- * Pauses VrShell.
- */
- void pause();
-
- /**
- * Resumes VrShell.
- */
- void resume();
-
- /**
- * Destroys VrShell.
- */
- void teardown();
-
- /**
- * Sets Android VR Mode to |enabled|.
- */
- void setVrModeEnabled(boolean enabled);
-
- /**
- * Sets whether we're presenting WebVR content or not.
- */
- void setWebVrModeEnabled(boolean enabled);
-
- /**
- * Returns the GVRLayout as a FrameLayout.
- */
- FrameLayout getContainer();
-}
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/vr_shell/VrShellImpl.java ('k') | chrome/android/java_sources.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698