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

Unified Diff: content/public/common/process_type.h

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/public/common/process_type.h
diff --git a/content/public/common/process_type.h b/content/public/common/process_type.h
index 14696697857d024f0dcf3ebeca77b6893c7eab1a..01ca1be26f9d870d491b29231dd3f3d7d5f107f4 100644
--- a/content/public/common/process_type.h
+++ b/content/public/common/process_type.h
@@ -7,6 +7,7 @@
#include <string>
+#include "build/build_config.h"
#include "content/common/content_export.h"
namespace content {
@@ -27,6 +28,9 @@ enum ProcessType {
PROCESS_TYPE_GPU,
PROCESS_TYPE_PPAPI_PLUGIN,
PROCESS_TYPE_PPAPI_BROKER,
+#if defined(OS_ANDROID)
+ PROCESS_TYPE_DOWNLOAD,
svaldez 2016/01/25 15:33:43 I believe we aren't allowed to ifdef here, since o
qinmin 2016/01/25 22:48:23 Done.
+#endif
// Custom process types used by the embedder should start from here.
PROCESS_TYPE_CONTENT_END,
// If any embedder has more than 10 custom process types, update this.

Powered by Google App Engine
This is Rietveld 408576698