Lines Matching defs:instance_id

63 PP_Var GetLocalizedString(PP_Instance instance_id,
66 content::PepperPluginInstance::Get(instance_id);
75 PP_Instance instance_id,
80 if (!content::PepperPluginInstance::Get(instance_id))
97 scoped_refptr<PrivateFontFile> font(new PrivateFontFile(instance_id, fd));
180 void DidStartLoading(PP_Instance instance_id) {
182 content::PepperPluginInstance::Get(instance_id);
188 void DidStopLoading(PP_Instance instance_id) {
190 content::PepperPluginInstance::Get(instance_id);
196 void SetContentRestriction(PP_Instance instance_id, int restrictions) {
198 content::PepperPluginInstance::Get(instance_id);
216 void HasUnsupportedFeature(PP_Instance instance_id) {
218 content::PepperPluginInstance::Get(instance_id);
233 void SaveAs(PP_Instance instance_id) {
235 content::PepperPluginInstance::Get(instance_id);
265 PP_Resource GetResourceImageForScale(PP_Instance instance_id,
270 content::PepperPluginInstance::Get(instance_id);
282 PP_Resource GetResourceImage(PP_Instance instance_id,
284 return GetResourceImageForScale(instance_id, image_id, 1.0f);
287 PP_Var ModalPromptForPassword(PP_Instance instance_id, PP_Var message) {
289 content::PepperPluginInstance::Get(instance_id);
307 PP_Bool IsOutOfProcess(PP_Instance instance_id) {
311 void SetSelectedText(PP_Instance instance_id, const char* selected_text) {
315 void SetLinkUnderCursor(PP_Instance instance_id, const char* url) {
317 content::PepperPluginInstance::Get(instance_id);
353 bool PPB_PDF_Impl::InvokePrintingForInstance(PP_Instance instance_id) {
354 return g_print_client ? g_print_client->Print(instance_id) : false;