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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/vr_shell/NonPresentingGvrContextImpl.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/NonPresentingGvrContextImpl.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/NonPresentingGvrContext.java b/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/NonPresentingGvrContextImpl.java
similarity index 87%
copy from chrome/android/java/src/org/chromium/chrome/browser/vr_shell/NonPresentingGvrContext.java
copy to chrome/android/java/src/org/chromium/chrome/browser/vr_shell/NonPresentingGvrContextImpl.java
index 99f30f2f4319158454164eab9493e699b596329c..660cd0cb8c0f84f5f5e26c6069941f0ef7d9d61f 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/NonPresentingGvrContext.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/vr_shell/NonPresentingGvrContextImpl.java
@@ -16,12 +16,12 @@ import org.chromium.base.annotations.UsedByReflection;
* Creates an active GvrContext from a detached GvrLayout. This is used by magic window mode.
*/
@UsedByReflection("VrShellDelegate.java")
-public class NonPresentingGvrContext implements NonPresentingGvrContextInterface {
- private static final String TAG = "NPGvrContext";
+public class NonPresentingGvrContextImpl implements NonPresentingGvrContext {
+ private static final String TAG = "NPGvrContextImpl";
private GvrLayout mGvrLayout;
@UsedByReflection("VrShellDelegate.java")
- public NonPresentingGvrContext(Activity activity) {
+ public NonPresentingGvrContextImpl(Activity activity) {
mGvrLayout = new GvrLayout(activity);
}

Powered by Google App Engine
This is Rietveld 408576698