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

Unified Diff: blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverProxy.java

Issue 2320923002: Add a full Blimp integration test. (Closed)
Patch Set: Fix build break with chrome embedder 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
« no previous file with comments | « blimp/client/core/contents/android/blimp_view.cc ('k') | blimp/client/core/contents/blimp_contents_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverProxy.java
diff --git a/blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverProxy.java b/blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverProxy.java
index 21546472b909b37307278414ca1a4098324d0822..b3212ab269dc48e4f471ff1099f87202ca275397 100644
--- a/blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverProxy.java
+++ b/blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverProxy.java
@@ -56,6 +56,14 @@ class BlimpContentsObserverProxy implements BlimpContentsObserver {
}
}
+ @Override
+ @CalledByNative
+ public void onPageLoadingStateChanged(boolean loading) {
+ for (BlimpContentsObserver observer : mObservers) {
+ observer.onPageLoadingStateChanged(loading);
+ }
+ }
+
private native long nativeInit(BlimpContentsImpl blimpContentsImpl);
private native void nativeDestroy(long nativeBlimpContentsObserverProxy);
}
« no previous file with comments | « blimp/client/core/contents/android/blimp_view.cc ('k') | blimp/client/core/contents/blimp_contents_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698