android_descriptors.h 735 B

1234567891011121314151617181920212223
  1. // Copyright 2019 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. #ifndef WEBLAYER_BROWSER_ANDROID_DESCRIPTORS_H_
  5. #define WEBLAYER_BROWSER_ANDROID_DESCRIPTORS_H_
  6. #include "content/public/common/content_descriptors.h"
  7. namespace weblayer {
  8. // This is a list of global descriptor keys to be used with the
  9. // base::GlobalDescriptors object (see base/posix/global_descriptors.h)
  10. enum {
  11. kWebLayerLocalePakDescriptor = kContentIPCDescriptorMax + 1,
  12. kWebLayerMainPakDescriptor,
  13. kWebLayer100PercentPakDescriptor,
  14. kWebLayerSecondaryLocalePakDescriptor,
  15. };
  16. } // namespace weblayer
  17. #endif // WEBLAYER_BROWSER_ANDROID_DESCRIPTORS_H_