Index: ppapi/thunk/ppb_fullscreen_thunk.cc |
=================================================================== |
--- ppapi/thunk/ppb_fullscreen_thunk.cc (revision 105485) |
+++ ppapi/thunk/ppb_fullscreen_thunk.cc (working copy) |
@@ -2,7 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "ppapi/c/dev/ppb_fullscreen_dev.h" |
+#include "ppapi/c/ppb_fullscreen.h" |
#include "ppapi/thunk/thunk.h" |
#include "ppapi/thunk/enter.h" |
#include "ppapi/thunk/ppb_instance_api.h" |
@@ -34,7 +34,7 @@ |
return enter.functions()->GetScreenSize(instance, size); |
} |
-const PPB_Fullscreen_Dev g_ppb_fullscreen_thunk = { |
+const PPB_Fullscreen g_ppb_fullscreen_thunk = { |
&IsFullscreen, |
&SetFullscreen, |
&GetScreenSize |
@@ -42,7 +42,7 @@ |
} // namespace |
-const PPB_Fullscreen_Dev* GetPPB_Fullscreen_Dev_Thunk() { |
+const PPB_Fullscreen* GetPPB_Fullscreen_Thunk() { |
return &g_ppb_fullscreen_thunk; |
} |