Chromium Code Reviews| Index: cc/resources/resource_id.h |
| diff --git a/cc/resources/resource_id.h b/cc/resources/resource_id.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c1c4d7efd23a92133f07c5ba77b73157b7c3ab76 |
| --- /dev/null |
| +++ b/cc/resources/resource_id.h |
| @@ -0,0 +1,14 @@ |
| +// Copyright 2015 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 CC_RESOURCES_RESOURCE_ID_H_ |
| +#define CC_RESOURCES_RESOURCE_ID_H_ |
| + |
| +namespace cc { |
| + |
| +using ResourceId = unsigned; |
|
danakj
2015/05/15 17:19:35
nit: can you uint32_t instead?
|
| + |
| +} // namespace cc |
| + |
| +#endif // CC_RESOURCES_RESOURCE_ID_H_ |