Lines Matching refs:instance_

85   instance_ = init_data_->module->CreateInstance(
87 if (!instance_.get())
93 bool success = instance_->Initialize(
96 instance_->Delete();
97 instance_ = NULL;
119 if (instance_.get()) {
122 instance_->Delete();
123 instance_ = NULL;
134 instance_object_ = instance_->GetInstanceObject(isolate);
136 // from the DOM, in which case instance_ would be NULL now.
137 if (!instance_.get())
145 MessageChannel* message_channel = instance_->message_channel();
150 v8::Handle<v8::Object> result = instance_->GetMessageChannelObject();
157 if (!instance_->FlashIsFullscreenOrPending())
158 instance_->Paint(canvas, plugin_rect_, rect);
167 if (!instance_->FlashIsFullscreenOrPending()) {
171 instance_->ViewChanged(plugin_rect_, clip_rect, cut_outs);
176 instance_->SetWebKitFocus(focused);
185 if (instance_->FlashIsFullscreenOrPending())
187 return instance_->HandleInputEvent(event, &cursor_info);
192 DCHECK(!instance_->document_loader());
193 instance_->HandleDocumentLoad(response);
197 blink::WebURLLoaderClient* document_loader = instance_->document_loader();
203 blink::WebURLLoaderClient* document_loader = instance_->document_loader();
210 blink::WebURLLoaderClient* document_loader = instance_->document_loader();
228 return instance_->GetSelectedText(false);
232 return instance_->GetSelectedText(true);
236 return GURL(instance_->GetLinkAtPosition(position));
240 instance_->Zoom(content::ZoomLevelToZoomFactor(level), text_only);
246 return instance_->StartFind(search_text, case_sensitive, identifier);
250 instance_->SelectFindResult(forward);
253 void PepperWebPluginImpl::stopFind() { instance_->StopFind(); }
256 return instance_->SupportsPrintInterface();
260 return instance_->IsPrintScalingDisabled();
264 return instance_->PrintBegin(print_params);
268 return instance_->PrintPage(page_number, canvas);
271 void PepperWebPluginImpl::printEnd() { return instance_->PrintEnd(); }
273 bool PepperWebPluginImpl::canRotateView() { return instance_->CanRotateView(); }
276 instance_->RotateView(type);