Home | History | Annotate | Download | only in thunk
      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 // From ppb_fullscreen.idl modified Wed May  1 09:47:29 2013.
      6 
      7 #include "ppapi/c/pp_errors.h"
      8 #include "ppapi/c/ppb_fullscreen.h"
      9 #include "ppapi/shared_impl/tracked_callback.h"
     10 #include "ppapi/thunk/enter.h"
     11 #include "ppapi/thunk/ppb_instance_api.h"
     12 #include "ppapi/thunk/resource_creation_api.h"
     13 #include "ppapi/thunk/thunk.h"
     14 
     15 namespace ppapi {
     16 namespace thunk {
     17 
     18 namespace {
     19 
     20 PP_Bool IsFullscreen(PP_Instance instance) {
     21   VLOG(4) << "PPB_Fullscreen::IsFullscreen()";
     22   EnterInstance enter(instance);
     23   if (enter.failed())
     24     return PP_FALSE;
     25   return enter.functions()->IsFullscreen(instance);
     26 }
     27 
     28 PP_Bool SetFullscreen(PP_Instance instance, PP_Bool fullscreen) {
     29   VLOG(4) << "PPB_Fullscreen::SetFullscreen()";
     30   EnterInstance enter(instance);
     31   if (enter.failed())
     32     return PP_FALSE;
     33   return enter.functions()->SetFullscreen(instance, fullscreen);
     34 }
     35 
     36 PP_Bool GetScreenSize(PP_Instance instance, struct PP_Size* size) {
     37   VLOG(4) << "PPB_Fullscreen::GetScreenSize()";
     38   EnterInstance enter(instance);
     39   if (enter.failed())
     40     return PP_FALSE;
     41   return enter.functions()->GetScreenSize(instance, size);
     42 }
     43 
     44 const PPB_Fullscreen_1_0 g_ppb_fullscreen_thunk_1_0 = {
     45   &IsFullscreen,
     46   &SetFullscreen,
     47   &GetScreenSize
     48 };
     49 
     50 }  // namespace
     51 
     52 const PPB_Fullscreen_1_0* GetPPB_Fullscreen_1_0_Thunk() {
     53   return &g_ppb_fullscreen_thunk_1_0;
     54 }
     55 
     56 }  // namespace thunk
     57 }  // namespace ppapi
     58