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 358b8a6a0fa128ed851d627de3f369fea5733421..85226a00a57341c9f6845686859677b8b28fb890 100644 |
--- a/content/browser/web_contents/web_contents_impl.h |
+++ b/content/browser/web_contents/web_contents_impl.h |
@@ -95,6 +95,10 @@ namespace mojom { |
class CreateNewWindowParams; |
} |
+namespace rappor { |
+class RapporService; |
+} |
+ |
#if defined(OS_ANDROID) |
class WebContentsAndroid; |
#endif |
@@ -139,6 +143,9 @@ class CONTENT_EXPORT WebContentsImpl |
// members call back into our virtual functions in the constructor. |
virtual void Init(const WebContents::CreateParams& params); |
+ ::rappor::RapporService* getRapporService() override; |
Charlie Reis
2016/11/16 23:55:22
These need to be in the correct override section o
Navid Zolghadr
2016/12/01 18:27:15
Done.
|
+ std::string getRapporCommittedUrl() override; |
+ |
// Returns the SavePackage which manages the page saving job. May be NULL. |
SavePackage* save_package() const { return save_package_.get(); } |