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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java

Issue 2363113003: Lint suppressions needed for Android SDK roll. (Closed)
Patch Set: Suppress alert box presubmit. Created 4 years, 3 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: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
index b4799019a9d80ae452471369228ca03249b6d8e1..44a559d9272a39c959bc7627c140541af8144d49 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
@@ -206,6 +206,8 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Screen
/**
* Returns interval between consecutive animation frames.
*/
+ // TODO(crbug.com/635567): Fix this properly.
+ @SuppressLint("ParcelCreator")
private static class SystemAnimationIntervalProvider implements AnimationIntervalProvider {
@Override
public long getLastAnimationFrameInterval() {
@@ -217,6 +219,8 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Screen
* {@ResultReceiver} passed in InputMethodManager#showSoftInput}. We need this to scroll to the
* editable node at the right timing, which is after input method window shows up.
*/
+ // TODO(crbug.com/635567): Fix this properly.
+ @SuppressLint("ParcelCreator")
private static class ShowKeyboardResultReceiver extends ResultReceiver {
// Unfortunately, the memory life cycle of ResultReceiver object, once passed in

Powered by Google App Engine
This is Rietveld 408576698