HomeSort by relevance Sort by last modified time
    Searched refs:ppp_instance (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/ppapi/shared_impl/
ppp_instance_combined.cc 14 const void* ppp_instance = get_interface_func.Run(PPP_INSTANCE_INTERFACE_1_1); local
15 if (ppp_instance) {
17 static_cast<const PPP_Instance_1_1*>(ppp_instance);
21 ppp_instance = get_interface_func.Run(PPP_INSTANCE_INTERFACE_1_0);
22 if (ppp_instance) {
24 static_cast<const PPP_Instance_1_0*>(ppp_instance);
27 // No supported PPP_Instance version found.
  /external/chromium_org/ppapi/proxy/
ppp_instance_private_proxy_unittest.cc 13 #include "ppapi/c/ppp_instance.h"
89 // We need to mock PPP_Instance, so that we can create and destroy the pretend
160 // This file-local global is used by the PPP_Instance mock above in order to
164 // Grab the host-side proxy for PPP_Instance and PPP_Instance_Private.
169 const PPP_Instance_1_1* ppp_instance = static_cast<const PPP_Instance_1_1*>( local
175 EXPECT_EQ(PP_TRUE, ppp_instance->DidCreate(kInstance, 0, NULL, NULL));
203 ppp_instance->DidDestroy(kInstance);
ppp_instance_proxy_unittest.cc 11 #include "ppapi/c/ppp_instance.h"
22 // This is a poor man's mock of PPP_Instance using global variables. Eventually
121 const PPP_Instance_1_1* ppp_instance = static_cast<const PPP_Instance_1_1*>( local
148 EXPECT_EQ(bool_to_return, ppp_instance->DidCreate(expected_instance,
169 ppp_instance->DidChangeView(expected_instance, view_resource.get());
183 ppp_instance->DidChangeFocus(expected_instance, expected_has_focus);

Completed in 52 milliseconds