| OLD | NEW |
| 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 #include "public/platform/modules/screen_orientation/WebScreenOrientationType.h" | 5 #ifndef WebScreenOrientationType_h |
| 6 #define WebScreenOrientationType_h |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 enum WebScreenOrientationType { |
| 11 WebScreenOrientationUndefined = 0, |
| 12 WebScreenOrientationPortraitPrimary, |
| 13 WebScreenOrientationPortraitSecondary, |
| 14 WebScreenOrientationLandscapePrimary, |
| 15 WebScreenOrientationLandscapeSecondary |
| 16 }; |
| 17 |
| 18 } // namespace blink |
| 19 |
| 20 #endif // WebScreenOrientationType_h |
| OLD | NEW |