Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / content / public / common / three_d_api_types.h
1 // Copyright (c) 2012 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 #ifndef CONTENT_PUBLIC_COMMON_THREE_D_API_TYPES_H_
6 #define CONTENT_PUBLIC_COMMON_THREE_D_API_TYPES_H_
7
8 // This file describes the kinds of 3D APIs exposed to client code. It
9 // is mainly used to provide more precise messages when access to
10 // these APIs is restricted for some reason.
11
12 namespace content {
13
14 enum ThreeDAPIType {
15   THREE_D_API_TYPE_WEBGL,
16   THREE_D_API_TYPE_PEPPER_3D,
17   THREE_D_API_TYPE_LAST = THREE_D_API_TYPE_PEPPER_3D
18
19 };
20
21 }  // namespace content
22
23 #endif  // CONTENT_PUBLIC_COMMON_THREE_D_API_TYPES_H_