/* Copyright 2012 The Chromium Authors * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* From ppb_fullscreen.idl modified Wed Dec 21 19:08:34 2011. */ #ifndef PPAPI_C_PPB_FULLSCREEN_H_ #define PPAPI_C_PPB_FULLSCREEN_H_ #include "ppapi/c/pp_bool.h" #include "ppapi/c/pp_instance.h" #include "ppapi/c/pp_macros.h" #include "ppapi/c/pp_size.h" #include "ppapi/c/pp_stdint.h" #define PPB_FULLSCREEN_INTERFACE_1_0 … #define PPB_FULLSCREEN_INTERFACE … /** * @file * This file defines the <code>PPB_Fullscreen</code> interface for * handling transitions of a module instance to and from fullscreen mode. */ /** * @addtogroup Interfaces * @{ */ /** * The <code>PPB_Fullscreen</code> interface is implemented by the browser. * This interface provides a way of checking the current screen mode and * toggling fullscreen mode. */ struct PPB_Fullscreen_1_0 { … }; PPB_Fullscreen; /** * @} */ #endif /* PPAPI_C_PPB_FULLSCREEN_H_ */