blob: 15429c14c9168c1dd613de522ff126ba18d16572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.weblayer_private.resources;
import org.chromium.weblayer_private.R;
class ResourceId {
static int[] getResourceIdList() {
int[] resourceList = {
#define LINK_RESOURCE_ID(c_id,java_id) java_id,
#define DECLARE_RESOURCE_ID(c_id,java_id) java_id,
#include "components/resources/android/permissions_resource_id.h"
};
return resourceList;
}
}
|