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

Unified Diff: content/browser/browser_context.cc

Issue 1978843003: Move in-GPU mojo:media app to new thread (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | content/browser/mojo/browser_shell_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_context.cc
diff --git a/content/browser/browser_context.cc b/content/browser/browser_context.cc
index f89d0ae0a497d2a135a9786183f110137f426c6d..a782fc41c6ad228edd8db0b4a218c8fd8d321121 100644
--- a/content/browser/browser_context.cc
+++ b/content/browser/browser_context.cc
@@ -406,13 +406,12 @@ void BrowserContext::Initialize(
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kMojoLocalStorage)) {
- connection->AddEmbeddedApplication(
- user_service::kUserServiceName,
- base::Bind(
- &user_service::CreateUserShellClient,
- BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE),
- BrowserThread::GetMessageLoopProxyForThread(BrowserThread::DB)),
- nullptr);
+ MojoApplicationInfo info;
+ info.application_factory = base::Bind(
+ &user_service::CreateUserShellClient,
+ BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE),
+ BrowserThread::GetMessageLoopProxyForThread(BrowserThread::DB));
+ connection->AddEmbeddedApplication(user_service::kUserServiceName, info);
}
}
}
« no previous file with comments | « no previous file | content/browser/mojo/browser_shell_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698