Home | History | Annotate | Download | only in common
      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 };
     18 
     19 }  // namespace content
     20 
     21 #endif  // CONTENT_PUBLIC_COMMON_THREE_D_API_TYPES_H_
     22