Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: ui/gfx/vector_icons/vector_icons.cc.template

Issue 2286323004: Remove vector_icons.gypi (Closed)
Patch Set: Missing includes Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/gfx/vector_icons/BUILD.gn ('k') | ui/gfx/vector_icons/vector_icons.h.template » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // vector_icons.cc.template is used to generate vector_icons.cc. Edit the former 5 // vector_icons.cc.template is used to generate vector_icons.cc. Edit the former
6 // rather than the latter. 6 // rather than the latter.
7 7
8 #include "ui/gfx/vector_icons.h" 8 #include "ui/gfx/vector_icons/vector_icons.h"
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "ui/gfx/vector_icon_types.h" 11 #include "ui/gfx/vector_icon_types.h"
12 12
13 #define ICON_TEMPLATE(icon_name, ...) \ 13 #define ICON_TEMPLATE(icon_name, ...) \
14 case VectorIconId::icon_name: {\ 14 case VectorIconId::icon_name: {\
15 static PathElement path[] = {__VA_ARGS__};\ 15 static PathElement path[] = {__VA_ARGS__};\
16 return path;\ 16 return path;\
17 } 17 }
18 18
(...skipping 26 matching lines...) Expand all
45 default: 45 default:
46 return GetPathForVectorIcon(id); 46 return GetPathForVectorIcon(id);
47 } 47 }
48 } 48 }
49 49
50 #if defined(OS_WIN) 50 #if defined(OS_WIN)
51 #pragma warning(pop) 51 #pragma warning(pop)
52 #endif // defined(OS_WIN) 52 #endif // defined(OS_WIN)
53 53
54 } // namespace gfx 54 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/vector_icons/BUILD.gn ('k') | ui/gfx/vector_icons/vector_icons.h.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698