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

Unified Diff: chrome/browser/search_engines/search_provider_install_state_message_filter.cc

Issue 7558014: Add a URL param to indicate group selection in Instant field trial. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Thread safe handling of Profiles Created 9 years, 4 months 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: chrome/browser/search_engines/search_provider_install_state_message_filter.cc
diff --git a/chrome/browser/search_engines/search_provider_install_state_message_filter.cc b/chrome/browser/search_engines/search_provider_install_state_message_filter.cc
index c3c02eabef34382f72b1f8f56ad3d4c3c868e3c5..f70fe36fa940acb25e7dcc63b8e12fb2b6a93c5a 100644
--- a/chrome/browser/search_engines/search_provider_install_state_message_filter.cc
+++ b/chrome/browser/search_engines/search_provider_install_state_message_filter.cc
@@ -22,7 +22,8 @@ SearchProviderInstallStateMessageFilter(
provider_data_(profile->GetWebDataService(Profile::EXPLICIT_ACCESS),
content::NOTIFICATION_RENDERER_PROCESS_TERMINATED,
Source<RenderProcessHost>(
- RenderProcessHost::FromID(render_process_id))),
+ RenderProcessHost::FromID(render_process_id)),
+ profile),
is_off_the_record_(profile->IsOffTheRecord()) {
// This is initialized by BrowserRenderProcessHost. Do not add any non-trivial
// initialization here. Instead do it lazily when required.

Powered by Google App Engine
This is Rietveld 408576698