OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_ | 5 #ifndef CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_ |
6 #define CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_ | 6 #define CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_ |
7 | 7 |
8 #include "content/public/common/content_descriptors.h" | 8 #include "content/public/common/content_descriptors.h" |
9 | 9 |
10 // This is a list of global descriptor keys to be used with the | 10 // This is a list of global descriptor keys to be used with the |
11 // base::GlobalDescriptors object (see base/posix/global_descriptors.h) | 11 // base::GlobalDescriptors object (see base/posix/global_descriptors.h) |
12 enum { | 12 enum { |
13 // TODO(gunsch): Remove once there's a real value here. Otherwise, non-Android | 13 // TODO(gunsch): Remove once there's a real value here. Otherwise, non-Android |
14 // build compile fails due to empty enum. | 14 // build compile fails due to empty enum. |
15 kDummyValue = kContentIPCDescriptorMax + 1, | 15 kDummyValue = kContentIPCDescriptorMax + 1, |
16 #if defined(OS_ANDROID) | 16 #if defined(OS_ANDROID) |
17 kAndroidPakDescriptor, | 17 kAndroidPakDescriptor, |
| 18 kAndroidMinidumpDescriptor, |
18 #endif // defined(OS_ANDROID) | 19 #endif // defined(OS_ANDROID) |
19 }; | 20 }; |
20 | 21 |
21 #endif // CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_ | 22 #endif // CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_ |
OLD | NEW |