blob: 60275ec6347b421e04b85e8fa5ebce009f189d90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_BASE_WEBUI_RESOURCE_PATH_H_
#define UI_BASE_WEBUI_RESOURCE_PATH_H_
namespace webui {
struct ResourcePath {
const char* const path;
int id;
};
} // namespace webui
#endif // UI_BASE_WEBUI_RESOURCE_PATH_H_
|