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

Unified Diff: content/public/browser/web_contents_delegate.h

Issue 11825007: Fix the loading progress bar for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Made LoadProgressChanged no only Android Created 7 years, 11 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 | « content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/web_contents_delegate.h
diff --git a/content/public/browser/web_contents_delegate.h b/content/public/browser/web_contents_delegate.h
index 575d0d11b0b75ea80a6bed275f6fc3808f1ddc9a..77d7e87a08ced35807377a255f9d8eb39f361bb0 100644
--- a/content/public/browser/web_contents_delegate.h
+++ b/content/public/browser/web_contents_delegate.h
@@ -117,13 +117,10 @@ class CONTENT_EXPORT WebContentsDelegate {
// loading feedback. See WebContents::IsLoading()
virtual void LoadingStateChanged(WebContents* source) {}
-#if defined(OS_ANDROID)
// Notifies the delegate that the page has made some progress loading.
// |progress| is a value between 0.0 (nothing loaded) to 1.0 (page fully
// loaded).
- virtual void LoadProgressChanged(WebContents* source,
- double progress) {}
-#endif
+ virtual void LoadProgressChanged(WebContents* source, double progress) {}
nilesh 2013/01/09 01:23:26 If I remember correctly, now the api is lying as t
// Request the delegate to close this web contents, and do whatever cleanup
// it needs to do.
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698