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

Unified Diff: content/common/process_type.cc

Issue 1622743005: Introduce background Download process to android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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: content/common/process_type.cc
diff --git a/content/common/process_type.cc b/content/common/process_type.cc
index 34019d453a6ba686014f044d94854104858dbb9e..0099e5f2f24fdb8f4a833036bae5ca333c7b3beb 100644
--- a/content/common/process_type.cc
+++ b/content/common/process_type.cc
@@ -29,6 +29,10 @@ std::string GetProcessTypeNameInEnglish(int type) {
return "Pepper Plugin";
case PROCESS_TYPE_PPAPI_BROKER:
return "Pepper Plugin Broker";
+#if defined(OS_ANDROID)
+ case PROCESS_TYPE_DOWNLOAD:
+ return "Download";
+#endif // defined(OS_ANDROID)
case PROCESS_TYPE_UNKNOWN:
DCHECK(false) << "Unknown child process type!";
return "Unknown";

Powered by Google App Engine
This is Rietveld 408576698