Index: ui/gfx/vector_icons/vector_icons.cc.template |
diff --git a/ui/gfx/vector_icons/vector_icons.cc.template b/ui/gfx/vector_icons/vector_icons.cc.template |
deleted file mode 100644 |
index e935923303cf30aa55b701a814a7ae9feb3eb35f..0000000000000000000000000000000000000000 |
--- a/ui/gfx/vector_icons/vector_icons.cc.template |
+++ /dev/null |
@@ -1,43 +0,0 @@ |
-// 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. |
- |
-// vector_icons.cc.template is used to generate vector_icons.cc. Edit the former |
-// rather than the latter. |
- |
-#include "ui/gfx/vector_icons/vector_icons.h" |
- |
-#include "base/logging.h" |
-#include "ui/gfx/vector_icon_types.h" |
- |
-#define ICON_TEMPLATE(icon_name, ...) \ |
- case VectorIconId::icon_name: {\ |
- static constexpr PathElement path[] = {__VA_ARGS__};\ |
- return path;\ |
- } |
- |
-namespace gfx { |
- |
-const PathElement* GetPathForVectorIcon(VectorIconId id) { |
- switch (id) { |
-TEMPLATE_PLACEHOLDER |
- |
- case VectorIconId::VECTOR_ICON_NONE: |
- NOTREACHED(); |
- return nullptr; |
- } |
- |
- NOTREACHED(); |
- return nullptr; |
-} |
- |
-const PathElement* GetPathForVectorIconAt1xScale(VectorIconId id) { |
- switch (id) { |
-TEMPLATE_PLACEHOLDER_1X |
- |
- default: |
- return GetPathForVectorIcon(id); |
- } |
-} |
- |
-} // namespace gfx |