| Index: ui/gfx/vector_icon_types.h
|
| diff --git a/ui/gfx/vector_icon_types.h b/ui/gfx/vector_icon_types.h
|
| index cc1be94d0f8ba614872f05f231ea037b69e9e329..e171617a819955b70992141d527028390e8956a7 100644
|
| --- a/ui/gfx/vector_icon_types.h
|
| +++ b/ui/gfx/vector_icon_types.h
|
| @@ -12,6 +12,7 @@
|
|
|
| namespace gfx {
|
|
|
| +struct VectorIcon;
|
| enum class VectorIconId;
|
|
|
| // The size of a single side of the square canvas to which path coordinates
|
| @@ -72,6 +73,11 @@ struct PathElement {
|
| };
|
| };
|
|
|
| +struct VectorIcon {
|
| + gfx::PathElement* path;
|
| + gfx::PathElement* path_1x;
|
| +};
|
| +
|
| // Returns an array of path commands and arguments, terminated by END.
|
| const PathElement* GetPathForVectorIcon(VectorIconId id);
|
| // As above, but returns an icon specifically adjusted for 1x scale factors.
|
|
|