summaryrefslogtreecommitdiffstats
path: root/src/core/qt_render_view_observer_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/qt_render_view_observer_host.h')
-rw-r--r--src/core/qt_render_view_observer_host.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/qt_render_view_observer_host.h b/src/core/qt_render_view_observer_host.h
index 61b6a4124..7d93176c5 100644
--- a/src/core/qt_render_view_observer_host.h
+++ b/src/core/qt_render_view_observer_host.h
@@ -55,9 +55,13 @@ class QtRenderViewObserverHost : public content::WebContentsObserver
{
public:
QtRenderViewObserverHost(content::WebContents*, WebContentsAdapterClient *adapterClient);
+ void fetchDocumentMarkup(quint64 requestId);
+ void fetchDocumentInnerText(quint64 requestId);
private:
bool OnMessageReceived(const IPC::Message& message) Q_DECL_OVERRIDE;
+ void onDidFetchDocumentMarkup(const base::string16& markup, quint64 requestId);
+ void onDidFetchDocumentInnerText(const base::string16& innerText, quint64 requestId);
WebContentsAdapterClient *m_adapterClient;
};