Index: components/dom_distiller/core/theme_list.h |
diff --git a/components/dom_distiller/core/theme_list.h b/components/dom_distiller/core/theme_list.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..44496a5b0d273e3efea43fd3a8280f0fe122906c |
--- /dev/null |
+++ b/components/dom_distiller/core/theme_list.h |
@@ -0,0 +1,17 @@ |
+// Copyright 2014 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. |
+ |
+// This file intentionally does not have header guards, it's included |
+// inside a macro to generate enum values. |
+ |
+#ifndef DEFINE_THEME |
+#error "DEFINE_THEME should be defined before including this file" |
+#endif |
+ |
+// First argument represents the enum name, second argument represents enum |
+// value. THEME_COUNT used only by native enum. |
+DEFINE_THEME(LIGHT, 0) |
+DEFINE_THEME(DARK, 1) |
+DEFINE_THEME(SEPIA, 2) |
+DEFINE_THEME(THEME_COUNT, 3) |