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

Unified Diff: ppapi/thunk/ppb_zoom_thunk.cc

Issue 10168026: Delete FunctionGroupBase from Pepper. (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
« no previous file with comments | « ppapi/thunk/ppb_x509_certificate_private_thunk.cc ('k') | webkit/plugins/ppapi/host_globals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/thunk/ppb_zoom_thunk.cc
diff --git a/ppapi/thunk/ppb_zoom_thunk.cc b/ppapi/thunk/ppb_zoom_thunk.cc
index 7ea903c2e94ece1ed2708f6130806554ab445bd8..193e856e12c0eb050e0eef44842805f5ff21a817 100644
--- a/ppapi/thunk/ppb_zoom_thunk.cc
+++ b/ppapi/thunk/ppb_zoom_thunk.cc
@@ -13,7 +13,7 @@ namespace thunk {
namespace {
void ZoomChanged(PP_Instance instance, double factor) {
- EnterFunction<PPB_Instance_FunctionAPI> enter(instance, true);
+ EnterInstance enter(instance);
if (enter.succeeded())
enter.functions()->ZoomChanged(instance, factor);
}
@@ -21,7 +21,7 @@ void ZoomChanged(PP_Instance instance, double factor) {
void ZoomLimitsChanged(PP_Instance instance,
double minimum_factor,
double maximum_factor) {
- EnterFunction<PPB_Instance_FunctionAPI> enter(instance, true);
+ EnterInstance enter(instance);
if (enter.succeeded()) {
enter.functions()->ZoomLimitsChanged(instance,
minimum_factor, maximum_factor);
« no previous file with comments | « ppapi/thunk/ppb_x509_certificate_private_thunk.cc ('k') | webkit/plugins/ppapi/host_globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698