Index: chrome/browser/chrome_content_browser_client.cc |
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc |
index b038682ea64612c240f80cdc62f03df4d850737c..488bec0b6948cf75c8de0ef2747529307e48c265 100644 |
--- a/chrome/browser/chrome_content_browser_client.cc |
+++ b/chrome/browser/chrome_content_browser_client.cc |
@@ -95,6 +95,7 @@ |
#include "components/google/core/browser/google_util.h" |
#include "components/metrics/client_info.h" |
#include "components/pref_registry/pref_registry_syncable.h" |
+#include "components/rappor/rappor_message_filter.h" |
#include "components/rappor/rappor_utils.h" |
#include "components/signin/core/common/profile_management_switches.h" |
#include "components/translate/core/common/translate_switches.h" |
@@ -853,6 +854,10 @@ void ChromeContentBrowserClient::RenderProcessWillLaunch( |
profile->GetHostContentSettingsMap(), &rules); |
} |
host->Send(new ChromeViewMsg_SetContentSettingRules(rules)); |
+ |
+ |
+ host->AddFilter(new rappor::RapporMessageFilter( |
jam
2015/04/02 16:24:14
nit: add this above where the other filters are ad
|
+ g_browser_process->rappor_service())); |
} |
GURL ChromeContentBrowserClient::GetEffectiveURL( |