Searched refs:plugin_ (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/remoting/webapp/
H A Dclient_session.js100 this.plugin_ = null;
207 needsVerticalScroll = clientArea.height < this.plugin_.getDesktopHeight();
208 needsHorizontalScroll = clientArea.width < this.plugin_.getDesktopWidth();
212 clientArea.height - kScrollBarWidth < this.plugin_.getDesktopHeight();
215 clientArea.width - kScrollBarWidth < this.plugin_.getDesktopWidth();
359 // this.plugin_.notifyClientResolution().
398 if (this.plugin_) {
400 this.plugin_.releaseAllKeys();
401 if (this.plugin_.element()) {
406 this.plugin_
[all...]
H A Dclient_plugin_impl.js28 this.plugin_ = remoting.ClientPluginImpl.createPluginElement_();
29 this.plugin_.id = 'session-client-plugin';
30 container.appendChild(this.plugin_);
151 this.plugin_.addEventListener('message', function(event) {
538 if (this.plugin_) {
539 this.plugin_.parentNode.removeChild(this.plugin_);
540 this.plugin_ = null;
548 return this.plugin_;
599 if (this.plugin_
[all...]
H A Dvideo_frame_recorder.js22 this.plugin_ = plugin;
41 this.plugin_.sendClientMessage('video-recorder', JSON.stringify(data));
151 this.plugin_.sendClientMessage('video-recorder', JSON.stringify(data));
/external/chromium_org/chrome/browser/resources/print_preview/previewarea/
H A Dpreview_area.js67 this.plugin_ = null;
239 if (!this.plugin_ ||
267 this.plugin_.sendKeyEvent(e.keyCode);
495 if (this.plugin_) {
501 this.plugin_ = document.createElement('embed');
502 this.plugin_.setAttribute(
504 this.plugin_.setAttribute('src', srcUrl);
506 this.plugin_ = PDFCreateOutOfProcessPlugin(srcUrl);
509 this.plugin_.setAttribute('class', 'preview-area-plugin');
510 this.plugin_
[all...]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dpnacl_resources.cc28 : plugin_(plugin) {
43 if (!plugin_->nacl_interface()->GetPnaclResourceInfo(
44 plugin_->pp_instance(),
72 plugin_->nacl_interface()->GetReadExecPnaclFd(llc_tool_name_.c_str(),
74 plugin_->nacl_interface()->GetReadExecPnaclFd(ld_tool_name_.c_str(),
H A Dpnacl_coordinator.cc121 plugin_(plugin),
147 plugin_->nacl_interface()->ReportTranslationFinished(
148 plugin_->pp_instance(),
169 plugin_->ReportLoadError(error_info);
180 plugin_->ReportLoadError(error_info);
196 plugin_->nacl_interface()->ReportTranslationFinished(
197 plugin_->pp_instance(),
210 plugin_->ReportLoadError(error_info_);
219 GetNaClInterface()->DispatchEvent(plugin_->pp_instance(),
231 HistogramSizeKB(plugin_
[all...]
H A Dtemporary_file.cc22 : plugin_(plugin),
60 plugin_->wrapper_factory()->MakeFileDesc(fd, O_RDWR));
64 plugin_->wrapper_factory()->MakeFileDesc(read_fd, O_RDONLY));
H A Dpnacl_resources.h48 Plugin* plugin_; member in class:plugin::PnaclResources
H A Dtemporary_file.h61 Plugin* plugin_; member in class:plugin::TempFile
H A Dpnacl_translate_thread.h72 bool started() const { return plugin_ != NULL; }
128 Plugin* plugin_; member in class:plugin::PnaclTranslateThread
H A Dservice_runtime.h176 Plugin* plugin() const { return plugin_; }
193 Plugin* plugin_; member in class:plugin::ServiceRuntime
H A Dpnacl_coordinator.h142 Plugin* plugin_; member in class:plugin::PnaclCoordinator
H A Dpnacl_translate_thread.cc65 plugin_(NULL) {
91 plugin_ = plugin;
152 NaClSubprocess* llc_subprocess = plugin_->LoadHelperNaClModule(
184 GetLlcCommandLine(plugin_,
325 plugin_->LoadHelperNaClModule(resources_->GetLdUrl(),
/external/chromium_org/components/plugins/renderer/
H A Dplugin_placeholder.cc52 plugin_(WebViewPlugin::Create(this,
73 CHECK(plugin_);
75 WebPluginContainer* container = plugin_->container();
83 container->setPlugin(plugin_);
90 plugin_->destroy();
99 plugin_->RestoreTitleText();
102 plugin_->ReplayReceivedData(new_plugin);
103 plugin_->destroy();
108 if (!plugin_)
110 WebPluginContainer* container = plugin_
[all...]
H A Dplugin_placeholder.h29 WebViewPlugin* plugin() { return plugin_; }
39 // our |plugin_| will be destroyed as well and will notify us.
95 WebViewPlugin* plugin_; member in class:plugins::PluginPlaceholder
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
H A Dplugin_settings.js26 this.plugin_ = plugin;
119 var plugin = this.plugin_;
146 JSON.stringify([this.plugin_, pattern]));
175 console.error('Error restoring [' + settings.plugin_ + ', ' +
194 JSON.stringify([this.plugin_, primaryPattern]));
205 if (keyArray[0] == this.plugin_) {
/external/chromium_org/chrome/browser/resources/hotword/
H A Dnacl_manager.js45 this.plugin_ = null;
236 this.plugin_ = /** @type {Nacl} */ (plugin);
237 if (!this.plugin_ || !this.plugin_.postMessage) {
238 document.body.removeChild(this.plugin_);
263 if (this.plugin_ != null) {
264 document.body.removeChild(this.plugin_);
265 this.plugin_ = null;
279 this.plugin_.postMessage(data);
/external/chromium_org/chrome/browser/resources/pdf/
H A Dpdf.js63 this.plugin_ = document.createElement('object');
66 this.plugin_.id = 'plugin';
67 this.plugin_.type = 'application/x-google-chrome-pdf';
68 this.plugin_.addEventListener('message', this.handlePluginMessage_.bind(this),
78 this.plugin_.setAttribute('src', this.streamDetails.originalUrl);
79 this.plugin_.setAttribute('stream-url', this.streamDetails.streamUrl);
85 this.plugin_.setAttribute('headers', headers);
88 this.plugin_.setAttribute('full-frame', '');
89 document.body.appendChild(this.plugin_);
93 this.plugin_
[all...]
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_delegate_proxy.cc204 plugin_(plugin),
275 plugin_ = NULL;
481 if (plugin_) {
487 plugin_->Invalidate();
891 if (plugin_)
892 plugin_->SetWindow(window);
897 plugin_->WillDestroyWindow(window_);
944 if (plugin_)
945 plugin_->CancelResource(id);
949 if (!plugin_)
[all...]
/external/chromium_org/content/renderer/
H A Drender_widget_fullscreen_pepper.h46 PepperPluginInstanceImpl* plugin() const { return plugin_; }
76 PepperPluginInstanceImpl* plugin_; member in class:content::RenderWidgetFullscreenPepper
H A Drender_widget_fullscreen_pepper.cc284 plugin_(plugin),
307 // plugin_ to NULL to avoid calling into a dangling pointer e.g. on Close().
308 plugin_ = NULL;
357 if (plugin_)
358 plugin_->ViewInitiatedPaint();
362 if (plugin_)
363 plugin_->ViewFlushedPaint();
369 if (plugin_)
370 plugin_->FlashSetFullscreen(false, false);
/external/chromium_org/content/child/npapi/
H A Dwebplugin_delegate_impl_android.cc23 plugin_(plugin),
/external/chromium_org/content/public/common/
H A Dcontent_client.h74 ContentPluginClient* plugin() { return plugin_; }
144 ContentPluginClient* plugin_; member in class:content::ContentClient
H A Dcontent_client.cc63 : browser_(NULL), plugin_(NULL), renderer_(NULL), utility_(NULL) {
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dabout_ipc_controller.h52 BOOL plugin_; variable

Completed in 342 milliseconds

12