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

Unified Diff: remoting/android/java/src/org/chromium/chromoting/SystemUiVisibilityChangedEventParameter.java

Issue 2485143004: Always consider SystemUI for panning boundaries in split-screen mode (Closed)
Patch Set: Addressing CR Fedback Created 4 years, 1 month 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
« no previous file with comments | « remoting/android/java/src/org/chromium/chromoting/DesktopCanvas.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/android/java/src/org/chromium/chromoting/SystemUiVisibilityChangedEventParameter.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/SystemUiVisibilityChangedEventParameter.java b/remoting/android/java/src/org/chromium/chromoting/SystemUiVisibilityChangedEventParameter.java
index a3eb076137b755078a6c469134b7c6376d3d3574..c712cd8d8850185fffe49daa50c1fbd3b369e73b 100644
--- a/remoting/android/java/src/org/chromium/chromoting/SystemUiVisibilityChangedEventParameter.java
+++ b/remoting/android/java/src/org/chromium/chromoting/SystemUiVisibilityChangedEventParameter.java
@@ -11,17 +11,12 @@ package org.chromium.chromoting;
* inset between the System UI elements which is used for our viewable content.
*/
public final class SystemUiVisibilityChangedEventParameter {
- public final boolean softInputMethodVisible;
- public final boolean systemUiVisible;
public final int left;
public final int top;
public final int right;
public final int bottom;
- public SystemUiVisibilityChangedEventParameter(boolean systemUiVisible,
- boolean softInputMethodVisible, int left, int top, int right, int bottom) {
- this.systemUiVisible = systemUiVisible;
- this.softInputMethodVisible = softInputMethodVisible;
+ public SystemUiVisibilityChangedEventParameter(int left, int top, int right, int bottom) {
this.left = left;
this.top = top;
this.right = right;
« no previous file with comments | « remoting/android/java/src/org/chromium/chromoting/DesktopCanvas.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698