| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index 4089c4599c725b8f6e6ae6aa7898b77d553b4909..4b0db20cd934cb93cb6c813688163003b5da2c62 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -136,7 +136,6 @@ class GeolocationDispatcher;
|
| class HistoryController;
|
| class HistoryEntry;
|
| class ImageResourceFetcher;
|
| -class LoadProgressTracker;
|
| class MidiDispatcher;
|
| class MediaStreamDispatcher;
|
| class MouseLockDispatcher;
|
| @@ -277,8 +276,6 @@ class CONTENT_EXPORT RenderViewImpl
|
| void FrameDidStartLoading(blink::WebFrame* frame);
|
| void FrameDidStopLoading(blink::WebFrame* frame);
|
|
|
| - void FrameDidChangeLoadProgress(blink::WebFrame* frame,
|
| - double load_progress);
|
| void FrameDidCommitProvisionalLoad(blink::WebLocalFrame* frame,
|
| bool is_new_navigation);
|
|
|
| @@ -1009,8 +1006,6 @@ class CONTENT_EXPORT RenderViewImpl
|
|
|
| // Counter to track how many frames have sent start notifications but not
|
| // stop notifications.
|
| - // TODO(japhet): This state will need to move to the browser process
|
| - // (probably WebContents) for site isolation.
|
| int frames_in_progress_;
|
|
|
| // The list of page IDs for each history item this RenderView knows about.
|
| @@ -1190,9 +1185,6 @@ class CONTENT_EXPORT RenderViewImpl
|
| std::map<int, blink::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.
|
|
|