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

Unified Diff: content/browser/web_contents/web_contents_impl.cc

Issue 11194043: Report load progress for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 2 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 | « no previous file | content/public/browser/web_contents_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/web_contents/web_contents_impl.cc
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
index 54f768215abe49d4b2cfa1c0661c8a62fd38ff61..566b05fdb556165709a3427fc3323e29b8001e99 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -2865,8 +2865,10 @@ void WebContentsImpl::DidCancelLoading() {
}
void WebContentsImpl::DidChangeLoadProgress(double progress) {
+#if defined(OS_ANDROID)
if (delegate_)
delegate_->LoadProgressChanged(this, progress);
+#endif
}
void WebContentsImpl::DidUpdateFrameTree(RenderViewHost* rvh) {
« no previous file with comments | « no previous file | content/public/browser/web_contents_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698