Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(621)

Unified Diff: ppapi/thunk/ppb_fullscreen_thunk.cc

Issue 8291002: PPAPI Fullscreen: move out of Dev. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698