Home | History | Annotate | Download | only in common
      1 // Copyright 2013 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef COMPONENTS_NACL_COMMON_NACL_PROCESS_TYPE_H_
      6 #define COMPONENTS_NACL_COMMON_NACL_PROCESS_TYPE_H_
      7 
      8 #include "content/public/common/process_type.h"
      9 
     10 // Defines the process types that are custom to NaCl.
     11 enum NaClProcessType {
     12   // Start at +1 because we removed an unused value and didn't want to change
     13   // the IDs as they're used in UMA (see the comment for ProcessType).
     14   PROCESS_TYPE_NACL_LOADER = content::PROCESS_TYPE_CONTENT_END + 1,
     15   PROCESS_TYPE_NACL_BROKER,
     16 };
     17 
     18 #endif  // COMPONENTS_NACL_COMMON_NACL_PROCESS_TYPE_H_
     19