/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
pnacl_resources.cc | 28 : 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(),
|
pnacl_coordinator.cc | 121 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_->uma_interface() [all...] |
temporary_file.cc | 22 : plugin_(plugin), 60 plugin_->wrapper_factory()->MakeFileDesc(fd, O_RDWR)); 64 plugin_->wrapper_factory()->MakeFileDesc(read_fd, O_RDONLY));
|
pnacl_resources.h | 48 Plugin* plugin_; member in class:plugin::PnaclResources
|
pnacl_translate_thread.h | 72 bool started() const { return plugin_ != NULL; } 128 Plugin* plugin_; member in class:plugin::PnaclTranslateThread
|
pnacl_translate_thread.cc | 65 plugin_(NULL) { 91 plugin_ = plugin; 152 NaClSubprocess* llc_subprocess = plugin_->LoadHelperNaClModule( 184 GetLlcCommandLine(plugin_, 325 plugin_->LoadHelperNaClModule(resources_->GetLdUrl(),
|
temporary_file.h | 61 Plugin* plugin_; member in class:plugin::TempFile
|
service_runtime.h | 176 Plugin* plugin() const { return plugin_; } 193 Plugin* plugin_; member in class:plugin::ServiceRuntime
|
/external/chromium_org/components/plugins/renderer/ |
plugin_placeholder.cc | 52 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_->container() [all...] |
plugin_placeholder.h | 29 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/browser/resources/print_preview/previewarea/ |
preview_area.js | 67 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_.setAttribute('aria-live', 'polite') [all...] |
/external/chromium_org/remoting/webapp/ |
client_session.js | 100 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_.element().focus.bind(this.plugin_.element()), 0) [all...] |
client_plugin_impl.js | 28 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_ && this.plugin_.postMessage) [all...] |
video_frame_recorder.js | 22 this.plugin_ = plugin; 41 this.plugin_.sendClientMessage('video-recorder', JSON.stringify(data)); 151 this.plugin_.sendClientMessage('video-recorder', JSON.stringify(data));
|
/external/chromium_org/content/renderer/npapi/ |
webplugin_delegate_proxy.cc | 204 plugin_(plugin), 275 plugin_ = NULL; 481 if (plugin_) { 487 plugin_->Invalidate(); 891 if (plugin_) 892 plugin_->SetWindow(window); 897 plugin_->WillDestroyWindow(window_); [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/ |
plugin_settings.js | 26 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/content/renderer/ |
render_widget_fullscreen_pepper.cc | 284 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);
|
render_widget_fullscreen_pepper.h | 46 PepperPluginInstanceImpl* plugin() const { return plugin_; } 76 PepperPluginInstanceImpl* plugin_; member in class:content::RenderWidgetFullscreenPepper
|
/external/chromium_org/chrome/browser/resources/pdf/ |
pdf.js | 63 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_.postMessage( [all...] |
/external/chromium_org/content/child/npapi/ |
webplugin_delegate_impl_android.cc | 23 plugin_(plugin),
|
/external/chromium_org/chrome/browser/resources/hotword/ |
nacl_manager.js | 45 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/content/public/common/ |
content_client.h | 74 ContentPluginClient* plugin() { return plugin_; } 144 ContentPluginClient* plugin_; member in class:content::ContentClient
|
content_client.cc | 63 : browser_(NULL), plugin_(NULL), renderer_(NULL), utility_(NULL) {
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
about_ipc_controller.h | 52 BOOL plugin_; variable
|
about_ipc_controller.mm | 95 appCache_ = view_ = utilityHost_ = viewHost_ = plugin_ = 157 if ((plugin_) && [name hasPrefix:@"PluginMsg"])
|