Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1813)

Unified Diff: content/public/browser/web_contents_delegate.h

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Add a test for the current url API Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698