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

Unified Diff: content/browser/web_contents/web_contents_impl.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/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(); }

Powered by Google App Engine
This is Rietveld 408576698