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

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

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix more compile errors in JNI files Created 4 years 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/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index 9d1756dec89cfc08ab87e015aae4ddf86b281c50..43cf4f405c57249347e43066320026f1573e0266 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -80,6 +80,10 @@ class URLRequest;
class URLRequestContext;
}
+namespace rappor {
+class RapporService;
+}
+
namespace sandbox {
class TargetPolicy;
}
@@ -791,6 +795,9 @@ class CONTENT_EXPORT ContentBrowserClient {
virtual void CreateMediaRemoter(RenderFrameHost* render_frame_host,
media::mojom::RemotingSourcePtr source,
media::mojom::RemoterRequest request) {}
+
+ // Returns the RapporService from the browser process.
+ virtual ::rappor::RapporService* GetRapporService();
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698