blob: bfe212c18b42549870b2d1a31f3f8a2e83f3b543 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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.
#ifndef WEBLAYER_BROWSER_ANDROID_RESOURCE_MAPPER_H_
#define WEBLAYER_BROWSER_ANDROID_RESOURCE_MAPPER_H_
namespace weblayer {
// Converts the given chromium |resource_id| (e.g. IDR_INFOBAR_TRANSLATE) to
// an Android drawable resource ID. Returns 0 if a mapping wasn't found.
int MapToJavaDrawableId(int resource_id);
} // namespace weblayer
#endif // WEBLAYER_BROWSER_ANDROID_RESOURCE_MAPPER_H_
|