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 371bcb2c4a1157da742509a964d8fdcb0a0c9073..e99cc2e9cbca09df6e3de9e2ad08409d38e88b92 100644 |
--- a/content/browser/web_contents/web_contents_impl.h |
+++ b/content/browser/web_contents/web_contents_impl.h |
@@ -215,6 +215,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 = |
@@ -492,10 +498,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; |