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

Unified Diff: ui/android/java/src/org/chromium/ui/base/ViewAndroid.java

Issue 1041823004: Remove java ViewAndroid class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: java PowerSaveBlocker Created 5 years, 8 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: ui/android/java/src/org/chromium/ui/base/ViewAndroid.java
diff --git a/ui/android/java/src/org/chromium/ui/base/ViewAndroid.java b/ui/android/java/src/org/chromium/ui/base/ViewAndroid.java
deleted file mode 100644
index daf0cda12e45d82a11b1577ff174e4aa70dbb7f6..0000000000000000000000000000000000000000
--- a/ui/android/java/src/org/chromium/ui/base/ViewAndroid.java
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright 2013 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.ui.base;
-
-import android.view.View;
-
-/**
- * From the Chromium architecture point of view, ViewAndroid and its native counterpart
- * serve purpose of representing Android view where Chrome expects to have a cross platform
- * handle to the system view type. As Views are Java object on Android, this ViewAndroid
- * and its native counterpart provide the expected abstractions on the C++ side and allow
- * it to be flexibly glued to an actual Android Java View at runtime.
- *
- * It should only be used where access to Android Views is needed from the C++ code.
- */
-public class ViewAndroid {
- // Native pointer to the c++ ViewAndroid object.
- private final ViewAndroidDelegate mViewAndroidDelegate;
- private int mKeepScreenOnCount;
- private View mKeepScreenOnView;
-
- /**
- * Constructs a View object.
- */
- public ViewAndroid(ViewAndroidDelegate viewAndroidDelegate) {
- mViewAndroidDelegate = viewAndroidDelegate;
- }
-
- public ViewAndroidDelegate getViewAndroidDelegate() {
- return mViewAndroidDelegate;
- }
-
- /**
- * Set KeepScreenOn flag. If the flag already set, increase mKeepScreenOnCount.
- */
- public void incrementKeepScreenOnCount() {
- mKeepScreenOnCount++;
- if (mKeepScreenOnCount == 1) {
- mKeepScreenOnView = mViewAndroidDelegate.acquireAnchorView();
- mViewAndroidDelegate.setAnchorViewPosition(mKeepScreenOnView, 0, 0, 0, 0);
- mKeepScreenOnView.setKeepScreenOn(true);
- }
- }
-
- /**
- * Decrease mKeepScreenOnCount, if it is decreased to 0, remove the flag.
- */
- public void decrementKeepScreenOnCount() {
- assert mKeepScreenOnCount > 0;
- mKeepScreenOnCount--;
- if (mKeepScreenOnCount == 0) {
- mViewAndroidDelegate.releaseAnchorView(mKeepScreenOnView);
- mKeepScreenOnView = null;
- }
- }
-}

Powered by Google App Engine
This is Rietveld 408576698