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

Unified Diff: content/renderer/render_view_impl.h

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 | « content/public/browser/web_contents_delegate.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index b0479b50578bf079775c9ff649d56c94110a622f..f8c81595e1a33b987215013b171743db458a1ab3 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -277,9 +277,6 @@ class RenderViewImpl : public RenderWidget,
bool ScheduleFileChooser(const FileChooserParams& params,
WebKit::WebFileChooserCompletion* completion);
- // Sets whether the renderer should report load progress to the browser.
- void SetReportLoadProgressEnabled(bool enabled);
-
old::GuestToEmbedderChannel* GetGuestToEmbedderChannel() const;
void SetGuestToEmbedderChannel(old::GuestToEmbedderChannel* channel);
PP_Instance guest_pp_instance() const { return guest_pp_instance_; }
@@ -1473,6 +1470,9 @@ class RenderViewImpl : public RenderWidget,
std::map<int, WebKit::WebFileChooserCompletion*> enumeration_completions_;
int enumeration_completion_id_;
+ // Reports load progress to the browser.
+ scoped_ptr<LoadProgressTracker> load_progress_tracker_;
+
// The SessionStorage namespace that we're assigned to has an ID, and that ID
// is passed to us upon creation. WebKit asks for this ID upon first use and
// uses it whenever asking the browser process to allocate new storage areas.
@@ -1502,9 +1502,6 @@ class RenderViewImpl : public RenderWidget,
// The node that the context menu was pressed over.
WebKit::WebNode context_menu_node_;
- // Reports load progress to the browser.
- scoped_ptr<LoadProgressTracker> load_progress_tracker_;
-
// All the registered observers. We expect this list to be small, so vector
// is fine.
ObserverList<RenderViewObserver> observers_;
« no previous file with comments | « content/public/browser/web_contents_delegate.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698