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

Side by Side Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java

Issue 1907703002: Fix a nasty scroll bug for Chrome Now-on-tap feature. Also combine the (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix file order Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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.content.browser; 5 package org.chromium.content.browser;
6 6
7 import android.content.ActivityNotFoundException; 7 import android.content.ActivityNotFoundException;
8 import android.content.Context; 8 import android.content.Context;
9 import android.content.Intent; 9 import android.content.Intent;
10 import android.view.KeyEvent; 10 import android.view.KeyEvent;
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 246
247 /** 247 /**
248 * Returns the bottom system window inset in pixels. The system window inset represents the area 248 * Returns the bottom system window inset in pixels. The system window inset represents the area
249 * of a full-screen window that is partially or fully obscured by the status bar, navigation 249 * of a full-screen window that is partially or fully obscured by the status bar, navigation
250 * bar, IME or other system windows. 250 * bar, IME or other system windows.
251 * @return The bottom system window inset. 251 * @return The bottom system window inset.
252 */ 252 */
253 public int getSystemWindowInsetBottom() { 253 public int getSystemWindowInsetBottom() {
254 return 0; 254 return 0;
255 } 255 }
256
257 /**
258 * Return the product version.
259 */
260 public String getProductVersion() {
261 return "";
262 }
256 } 263 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698