| Index: content/browser/web_contents/web_contents_impl.h
|
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
|
| index 92919be4ea74b72d27e8cfb3f6e86fcb829f79f6..47fb0761082a4b1fb6263e649944c99989c913ea 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -218,6 +218,12 @@ class CONTENT_EXPORT WebContentsImpl
|
| // have been removed.
|
| void RemoveAccessibilityMode(AccessibilityMode mode);
|
|
|
| + // Notification that the WebContents load state changed.
|
| + void LoadStateChanged(const GURL& url,
|
| + const net::LoadStateWithParam& load_state,
|
| + uint64_t upload_position,
|
| + uint64_t upload_size);
|
| +
|
| // Request a one-time snapshot of the accessibility tree without changing
|
| // the accessibility mode.
|
| using AXTreeSnapshotCallback =
|
| @@ -496,10 +502,6 @@ class CONTENT_EXPORT WebContentsImpl
|
| void OnUserInteraction(RenderWidgetHostImpl* render_widget_host,
|
| const blink::WebInputEvent::Type type) override;
|
| void OnIgnoredUIEvent() override;
|
| - void LoadStateChanged(const GURL& url,
|
| - const net::LoadStateWithParam& load_state,
|
| - uint64_t upload_position,
|
| - uint64_t upload_size) override;
|
| void Activate() override;
|
| void RunFileChooser(RenderViewHost* render_view_host,
|
| const FileChooserParams& params) override;
|
|
|