summaryrefslogtreecommitdiff
path: root/chromium/weblayer/browser/java/ResourceId.template
blob: 1e16c782f49f360cb41583556fb657854f9d3e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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/blocked_content_resource_id.h"
#include "components/resources/android/page_info_resource_id.h"
#include "components/resources/android/permissions_resource_id.h"
        };
        return resourceList;
    }
}