Chromium Code Reviews| Index: components/dom_distiller/core/distilled_page_prefs.h |
| diff --git a/components/dom_distiller/core/distilled_page_prefs.h b/components/dom_distiller/core/distilled_page_prefs.h |
| index 60b1b3db9eb22a2859cc9f81e2893a7a5e781a9a..0f4d425ffcd0df3ccb79bb4ec8c1d05d793b266b 100644 |
| --- a/components/dom_distiller/core/distilled_page_prefs.h |
| +++ b/components/dom_distiller/core/distilled_page_prefs.h |
| @@ -22,9 +22,9 @@ class DistilledPagePrefs { |
| public: |
| // Possible themes for distilled page. |
| enum Theme { |
| - kLight, |
| - kDark, |
| - kSepia |
| + #define DEFINE_THEME(x, y, z) x = z, |
|
nyquist
2014/07/08 01:02:33
rename x to name and z to value. rename y to unuse
sunangel
2014/07/08 20:40:58
Done.
|
| + #include "components/dom_distiller/core/theme_list.h" |
| + #undef DEFINE_THEME |
| }; |
| class Observer { |