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

Side by Side Diff: android_webview/java/src/org/chromium/android_webview/NullAwViewMethods.java

Issue 653633005: [WebView] Enable scrolling in fullscreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « android_webview/java/src/org/chromium/android_webview/FullScreenView.java ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 package org.chromium.android_webview; 5 package org.chromium.android_webview;
6 6
7 import android.content.res.Configuration; 7 import android.content.res.Configuration;
8 import android.graphics.Canvas; 8 import android.graphics.Canvas;
9 import android.graphics.Paint; 9 import android.graphics.Paint;
10 import android.graphics.Rect; 10 import android.graphics.Rect;
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 120
121 @Override 121 @Override
122 public void onVisibilityChanged(View changedView, int visibility) { 122 public void onVisibilityChanged(View changedView, int visibility) {
123 // Intentional no-op. 123 // Intentional no-op.
124 } 124 }
125 125
126 @Override 126 @Override
127 public void onWindowVisibilityChanged(int visibility) { 127 public void onWindowVisibilityChanged(int visibility) {
128 // Intentional no-op. 128 // Intentional no-op.
129 } 129 }
130
131 @Override
132 public void onContainerViewScrollChanged(int l, int t, int oldl, int oldt) {
133 // Intentional no-op.
134 }
135
136 @Override
137 public void onContainerViewOverScrolled(int scrollX, int scrollY, boolean cl ampedX,
138 boolean clampedY) {
139 // Intentional no-op.
140 }
141
142 @Override
143 public int computeHorizontalScrollRange() {
144 return 0;
145 }
146
147 @Override
148 public int computeHorizontalScrollOffset() {
149 return 0;
150 }
151
152 @Override
153 public int computeVerticalScrollRange() {
154 return 0;
155 }
156
157 @Override
158 public int computeVerticalScrollOffset() {
159 return 0;
160 }
161
162 @Override
163 public int computeVerticalScrollExtent() {
164 return 0;
165 }
166
167 @Override
168 public void computeScroll() {
169 // Intentional no-op.
170 }
130 } 171 }
OLDNEW
« no previous file with comments | « android_webview/java/src/org/chromium/android_webview/FullScreenView.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698