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

Side by Side Diff: content/public/common/screen_orientation_values.h

Issue 615893003: Use the new java_cpp_enum rule in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix aosp Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_
6 #define CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_ 6 #define CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_
7 7
8 namespace content { 8 namespace content {
9 9
10 // A Java counterpart will be generated for this enum.
11 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.content_public.common
10 enum ScreenOrientationValues { 12 enum ScreenOrientationValues {
11 #define DEFINE_SCREEN_ORIENTATION_VALUE(name, value) name = value, 13 SCREEN_ORIENTATION_VALUES_DEFAULT,
12 #include "content/public/common/screen_orientation_values_list.h" 14 SCREEN_ORIENTATION_VALUES_PORTRAIT_PRIMARY,
13 #undef DEFINE_SCREEN_ORIENTATION_VALUE 15 SCREEN_ORIENTATION_VALUES_PORTRAIT_SECONDARY,
16 SCREEN_ORIENTATION_VALUES_LANDSCAPE_PRIMARY,
17 SCREEN_ORIENTATION_VALUES_LANDSCAPE_SECONDARY,
18 SCREEN_ORIENTATION_VALUES_ANY,
19 SCREEN_ORIENTATION_VALUES_LANDSCAPE,
20 SCREEN_ORIENTATION_VALUES_PORTRAIT,
21 SCREEN_ORIENTATION_VALUES_NATURAL,
14 }; 22 };
15 23
16 } // namespace content 24 } // namespace content
17 25
18 #endif // CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_ 26 #endif // CONTENT_PUBLIC_COMMON_SCREEN_ORIENTATION_VALUES_H_
OLDNEW
« no previous file with comments | « content/public/common/result_codes_list.h ('k') | content/public/common/screen_orientation_values_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698