Fix crash when a webview tries to load a plugin resource.
[chromium-blink-merge.git] / chromecast / common / global_descriptors.h
blobb380158ac7516b48743e970003acd86caa72f9cb
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.
5 #ifndef CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_
6 #define CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_
8 #include "content/public/common/content_descriptors.h"
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 kAndroidMinidumpDescriptor,
19 #endif // defined(OS_ANDROID)
22 #endif // CHROMECAST_COMMON_GLOBAL_DESCRIPTORS_H_