Index: content/public/browser/web_contents_delegate.h |
diff --git a/content/public/browser/web_contents_delegate.h b/content/public/browser/web_contents_delegate.h |
index 2beb83c3b721b8fc03adbb5015f0825567fbc699..c0f26c22689f96148afa63f39fa7fc811c889814 100644 |
--- a/content/public/browser/web_contents_delegate.h |
+++ b/content/public/browser/web_contents_delegate.h |
@@ -60,6 +60,10 @@ class Rect; |
class Size; |
} |
+namespace rappor { |
+class RapporService; |
+} |
+ |
namespace net { |
class X509Certificate; |
} |
@@ -535,6 +539,8 @@ class CONTENT_EXPORT WebContentsDelegate { |
// Requests the app banner. This method is called from the DevTools. |
virtual void RequestAppBannerFromDevTools(content::WebContents* web_contents); |
+ virtual ::rappor::RapporService* getRapporService(); |
Charlie Reis
2016/11/16 23:55:22
nit: All methods in content/public should be docum
ncarter (slow)
2016/11/17 20:39:12
If we expose the full rappor API to content, GetRa
Navid Zolghadr
2016/12/01 18:27:15
I removed this API from here and wen with the //co
|
+ |
protected: |
virtual ~WebContentsDelegate(); |