Chromium Code Reviews| 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. |