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

Unified Diff: content/browser/browser_process_sub_thread.cc

Issue 2774363003: android: Java-based launcher thread (Closed)
Patch Set: gab review 2 Created 3 years, 9 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 | « content/browser/browser_process_sub_thread.h ('k') | content/public/android/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_process_sub_thread.cc
diff --git a/content/browser/browser_process_sub_thread.cc b/content/browser/browser_process_sub_thread.cc
index 5aadda5ad1edc4c61595f24326eeee25b90209f2..71f1396dbdef051e5e05126d34f65568bd6d19cf 100644
--- a/content/browser/browser_process_sub_thread.cc
+++ b/content/browser/browser_process_sub_thread.cc
@@ -21,8 +21,12 @@
namespace content {
BrowserProcessSubThread::BrowserProcessSubThread(BrowserThread::ID identifier)
- : BrowserThreadImpl(identifier) {
-}
+ : BrowserThreadImpl(identifier) {}
+
+BrowserProcessSubThread::BrowserProcessSubThread(
+ BrowserThread::ID identifier,
+ base::MessageLoop* message_loop)
+ : BrowserThreadImpl(identifier, message_loop) {}
BrowserProcessSubThread::~BrowserProcessSubThread() {
Stop();
« no previous file with comments | « content/browser/browser_process_sub_thread.h ('k') | content/public/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698