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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/ChromeWebContentsDelegateAndroid.java

Issue 1358923002: Extract TabChromeWebContentsDelegateAndroid into a separate class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrometab10
Patch Set: Move renderer hung calls Created 5 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: chrome/android/java/src/org/chromium/chrome/browser/ChromeWebContentsDelegateAndroid.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/ChromeWebContentsDelegateAndroid.java b/chrome/android/java/src/org/chromium/chrome/browser/ChromeWebContentsDelegateAndroid.java
index 4c64f160902a725bfcd8d0fee2e496cdbd371c43..ab5eda0b7a4e365bd2922b11093d68efae1cac2a 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/ChromeWebContentsDelegateAndroid.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/ChromeWebContentsDelegateAndroid.java
@@ -126,6 +126,8 @@ public class ChromeWebContentsDelegateAndroid extends WebContentsDelegateAndroid
findMatchRectsDetails.rects[index] = rect;
}
+ protected static native void nativeOnRendererUnresponsive(WebContents webContents);
Maria 2015/09/22 23:23:47 after you merge, you should also be able to reduce
+ protected static native void nativeOnRendererResponsive(WebContents webContents);
protected static native boolean nativeIsCapturingAudio(WebContents webContents);
protected static native boolean nativeIsCapturingVideo(WebContents webContents);
}

Powered by Google App Engine
This is Rietveld 408576698