Index: chromecast/browser/cast_browser_process.cc |
diff --git a/chromecast/browser/cast_browser_process.cc b/chromecast/browser/cast_browser_process.cc |
index d3cfbfa9eade8c148a9905c0155d16a19a4a8533..848eb1e1ba326bb1aea280f7dac5ebda9e21b131 100644 |
--- a/chromecast/browser/cast_browser_process.cc |
+++ b/chromecast/browser/cast_browser_process.cc |
@@ -54,6 +54,12 @@ void CastBrowserProcess::SetBrowserContext( |
browser_context_.swap(browser_context); |
} |
+void CastBrowserProcess::SetCastContentBrowserClient( |
+ CastContentBrowserClient* cast_content_browser_client) { |
+ DCHECK(!cast_content_browser_client_); |
+ cast_content_browser_client_ = cast_content_browser_client; |
+} |
+ |
void CastBrowserProcess::SetCastService(scoped_ptr<CastService> cast_service) { |
DCHECK(!cast_service_); |
cast_service_.swap(cast_service); |