Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / content / public / android / java / src / org / chromium / content_public / common / ScreenOrientationConstants.java
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
3 // found in the LICENSE file.
4
5 package org.chromium.content_public.common;
6
7 /**
8  * ScreenOrientationConstants contains a set of constants related to the
9  * screen orientation feature.
10  */
11 public class ScreenOrientationConstants {
12     // Intent's bundle's key for the default orientation field.
13     public static final String EXTRA_ORIENTATION =
14             "org.chromium.content_public.common.orientation";
15
16     private ScreenOrientationConstants() {
17     }
18 }