ResourceId.template 811 B

12345678910111213141516171819202122
  1. // Copyright 2020 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. package org.chromium.weblayer_private.resources;
  5. import org.chromium.weblayer_private.R;
  6. class ResourceId {
  7. static int[] getResourceIdList() {
  8. int[] resourceList = {
  9. #define LINK_RESOURCE_ID(c_id,java_id) java_id,
  10. #define DECLARE_RESOURCE_ID(c_id,java_id) java_id,
  11. #include "components/resources/android/blocked_content_resource_id.h"
  12. #include "components/resources/android/page_info_resource_id.h"
  13. #include "components/resources/android/permissions_resource_id.h"
  14. #include "components/resources/android/sms_resource_id.h"
  15. #include "components/resources/android/webxr_resource_id.h"
  16. };
  17. return resourceList;
  18. }
  19. }