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

Unified Diff: tests/ppapi_test_lib/get_browser_interface.cc

Issue 7167018: Migrating test/ppapi_file_system to messaging (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 6 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
« no previous file with comments | « tests/ppapi_test_lib/get_browser_interface.h ('k') | tests/ppapi_test_lib/test_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/ppapi_test_lib/get_browser_interface.cc
===================================================================
--- tests/ppapi_test_lib/get_browser_interface.cc (revision 5661)
+++ tests/ppapi_test_lib/get_browser_interface.cc (working copy)
@@ -8,6 +8,7 @@
#include "ppapi/c/dev/ppb_context_3d_dev.h"
#include "ppapi/c/dev/ppb_file_io_dev.h"
+#include "ppapi/c/dev/ppb_file_system_dev.h"
#include "ppapi/c/dev/ppb_scrollbar_dev.h"
#include "ppapi/c/dev/ppb_surface_3d_dev.h"
#include "ppapi/c/dev/ppb_var_deprecated.h"
@@ -89,6 +90,11 @@
GetBrowserInterface(PPB_FILEIO_DEV_INTERFACE));
}
+const PPB_FileSystem_Dev* PPBFileSystemDev() {
+ return reinterpret_cast<const PPB_FileSystem_Dev*>(
+ GetBrowserInterface(PPB_FILESYSTEM_DEV_INTERFACE));
+}
+
const PPB_Scrollbar_Dev* PPBScrollbarDev() {
return reinterpret_cast<const PPB_Scrollbar_Dev*>(
GetBrowserInterface(PPB_SCROLLBAR_DEV_INTERFACE));
« no previous file with comments | « tests/ppapi_test_lib/get_browser_interface.h ('k') | tests/ppapi_test_lib/test_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698