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

Unified Diff: ppapi/shared_impl/ppb_instance_shared.cc

Issue 10116003: Add #ifdefs to separate NaCl and non-NaCl PPAPI Proxy code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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/shared_impl/ppb_instance_shared.cc
===================================================================
--- ppapi/shared_impl/ppb_instance_shared.cc (revision 132566)
+++ ppapi/shared_impl/ppb_instance_shared.cc (working copy)
@@ -58,6 +58,7 @@
return PP_OK;
}
+#if !defined(OS_NACL)
bool PPB_Instance_Shared::ValidateSetCursorParams(PP_MouseCursor_Type type,
PP_Resource image,
const PP_Point* hot_spot) {
@@ -97,5 +98,6 @@
return false;
return true;
}
+#endif // !defined(OS_NACL)
} // namespace ppapi

Powered by Google App Engine
This is Rietveld 408576698