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

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/webcontents/WebContentsTest.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/javatests/src/org/chromium/content/browser/webcontents/WebContentsTest.java
diff --git a/content/public/android/javatests/src/org/chromium/content/browser/webcontents/WebContentsTest.java b/content/public/android/javatests/src/org/chromium/content/browser/webcontents/WebContentsTest.java
index 607519ce4631b24ed3be23e32ad405555bbd9857..ef75a8377e9f45477152b291fcbab82a8a333353 100644
--- a/content/public/android/javatests/src/org/chromium/content/browser/webcontents/WebContentsTest.java
+++ b/content/public/android/javatests/src/org/chromium/content/browser/webcontents/WebContentsTest.java
@@ -4,6 +4,7 @@
package org.chromium.content.browser.webcontents;
+import android.annotation.SuppressLint;
import android.content.Intent;
import android.os.Bundle;
import android.os.Parcel;
@@ -88,6 +89,8 @@ public class WebContentsTest extends ContentShellTestBase {
* @throws InterruptedException
*/
@SmallTest
+ // TODO(crbug.com/635567): Fix this properly.
+ @SuppressLint("ParcelClassLoader")
public void testWebContentsSerializeDeserializeInBundle() throws InterruptedException {
launchContentShellWithUrl(TEST_URL_1);
waitForActiveShellToBeDoneLoading();
@@ -127,6 +130,8 @@ public class WebContentsTest extends ContentShellTestBase {
* @throws InterruptedException
*/
@SmallTest
+ // TODO(crbug.com/635567): Fix this properly.
+ @SuppressLint("ParcelClassLoader")
public void testWebContentsSerializeDeserializeInIntent() throws InterruptedException {
launchContentShellWithUrl(TEST_URL_1);
waitForActiveShellToBeDoneLoading();

Powered by Google App Engine
This is Rietveld 408576698