summaryrefslogtreecommitdiffstats
path: root/chromium/content/public/common/screen_orientation_values.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/public/common/screen_orientation_values.h')
-rw-r--r--chromium/content/public/common/screen_orientation_values.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/chromium/content/public/common/screen_orientation_values.h b/chromium/content/public/common/screen_orientation_values.h
new file mode 100644
index 00000000000..fe421a2b793
--- /dev/null
+++ b/chromium/content/public/common/screen_orientation_values.h
@@ -0,0 +1,18 @@
+// 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.
+
+#ifndef CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_
+#define CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_
+
+namespace content {
+
+enum ScreenOrientationValues {
+#define DEFINE_SCREEN_ORIENTATION_VALUE(name, value) name = value,
+#include "content/public/common/screen_orientation_values_list.h"
+#undef DEFINE_SCREEN_ORIENTATION_VALUE
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_