Home | History | Annotate | Download | only in common
      1 // Copyright 2014 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 CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_
      6 #define CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_
      7 
      8 #include "content/public/common/content_descriptors.h"
      9 
     10 // This is a list of global descriptor keys to be used with the
     11 // base::GlobalDescriptors object (see base/posix/global_descriptors.h)
     12 enum {
     13   // TODO(gunsch): Remove once there's a real value here. Otherwise, non-Android
     14   // build compile fails due to empty enum.
     15   kDummyValue = kContentIPCDescriptorMax + 1,
     16 #if defined(OS_ANDROID)
     17   kAndroidPakDescriptor,
     18 #endif  // defined(OS_ANDROID)
     19 };
     20 
     21 #endif  // CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_
     22