Searched defs:plugin (Results 101 - 125 of 154) sorted by relevance

1234567

/external/chromium_org/content/child/npapi/
H A Dplugin_instance.cc31 PluginInstance::PluginInstance(PluginLib* plugin, const std::string& mime_type) argument
32 : plugin_(plugin),
35 npp_functions_(plugin->functions()),
210 // By default the plugin instance is not backed by an OpenGL texture.
240 // to new instances of the plugin at the same URL.
549 // which owns it. When a plugin invokes NPN_RequestRead on a seekable stream,
H A Dwebplugin_delegate_impl_win.cc56 // way to count the time spent in aggregate plugin painting, however, so
61 // message to the plugin window. The handler for this message displays
66 // The current instance of the plugin which entered the modal loop.
98 // plugin, which otherwise could trigger layout change while painting by
226 WebPlugin* plugin,
230 plugin_(plugin),
282 // Windowless mode doesn't work in the WMP NPAPI plugin.
285 // The media player plugin sets its size on the first NPP_SetWindow call
294 } else if (instance_->mime_type() == "audio/x-pn-realaudio-plugin" ||
315 // The divx plugin set
225 WebPluginDelegateImpl( WebPlugin* plugin, PluginInstance* instance) argument
[all...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dtest_plugin.cc125 TestPlugin* plugin = static_cast<TestPlugin*>(context); local
126 delete plugin;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.cpp558 HTMLPlugInElement* plugin = toHTMLPlugInElement(result.innerNonSharedNode()); local
559 if (!plugin->canProcessDrag() && !result.innerNonSharedNode()->hasEditableStyle())
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPluginContainerImpl.cpp112 // Don't paint anything if the plugin doesn't intersect the damage rect.
121 // The plugin is positioned in window coordinates, so it needs to be painted
180 // http://devedge-temp.mozilla.org/library/manuals/2002/plugin/1.0/structures5.html#1000000
222 // over to the plugin. For e.g. when a plugin is instantiated it does not
224 // is ignored. This function is called when the plugin eventually gets a
239 // We override this function so that if the plugin is windowed, we can call
241 // NPP_SetWindow is called before the manual load data is sent to a plugin.
251 void WebPluginContainerImpl::setPlugin(WebPlugin* plugin) argument
253 if (plugin !
[all...]
H A DChromeClientImpl.cpp556 WebPluginContainerImpl* plugin = toWebPluginContainerImpl(widget); local
557 url = plugin->plugin()->linkAtPosition(result.roundedPointInInnerNodeFrame());
H A DWebLocalFrameImpl.cpp406 // the frame hosts a plugin that supports custom printing. In this case, we
407 // want to delegate all printing related calls to the plugin.
410 ChromePluginPrintContext(LocalFrame* frame, WebPluginContainerImpl* plugin, const WebPrintParams& printParams) argument
411 : ChromePrintContext(frame), m_plugin(plugin), m_printParams(printParams)
1100 return pluginContainer->plugin()->hasSelection();
1115 return pluginContainer->plugin()->selectionAsText();
1133 return pluginContainer->plugin()->selectionAsMarkup();
1212 if (WebPlugin* plugin = focusedPluginIfInputMethodSupported()) {
1213 plugin->extendSelectionAndDelete(before, after);
1246 return container->plugin();
[all...]
H A DWebViewImpl.cpp505 // Take capture on a mouse down on a plugin so we can send it mouse events.
506 // If the hit node is a plugin but a scrollbar is over it don't start mouse
2168 if (WebPlugin* plugin = focusedPluginIfInputMethodSupported(focused))
2169 return plugin->setComposition(text, underlines, selectionStart, selectionEnd);
2234 if (WebPlugin* plugin = focusedPluginIfInputMethodSupported(focused))
2235 return plugin->confirmComposition(text, selectionBehavior);
2504 return container->plugin();
2893 pluginContainer->plugin()->setZoomLevel(m_zoomLevel, false);
3372 WebPluginContainerImpl* plugin = toWebPluginContainerImpl(widget); local
3375 plugin
[all...]
/external/chromium_org/chrome/browser/policy/
H A Dpolicy_browsertest.cc425 LOG(INFO) << "Test skipped because the Flash plugin couldn't be found.";
431 const content::WebPluginInfo* plugin,
434 plugin_prefs->EnablePlugin(enabled, plugin->path,
1285 // Verify that the Flash plugin exists and that it can be enabled and disabled
1316 // Verify that the Flash plugin exists and that it can be enabled and disabled
1355 // Verifies that a plugin can be force-installed with a policy.
1379 // When a plugin is both enabled and disabled, the whitelist takes precedence.
1393 base::FilePath(FILE_PATH_LITERAL("plugin")),
1396 "Test skipped because plugin/quicktime.html test file wasn't found.";
1411 base::FilePath path(FILE_PATH_LITERAL("plugin/quicktim
430 SetPluginEnabled(PluginPrefs* plugin_prefs, const content::WebPluginInfo* plugin, bool enabled) argument
[all...]
/external/chromium_org/chrome/renderer/
H A Dchrome_content_renderer_client.cc233 bool ShouldUseJavaScriptSettingForPlugin(const WebPluginInfo& plugin) { argument
234 if (plugin.type != WebPluginInfo::PLUGIN_TYPE_PEPPER_IN_PROCESS &&
235 plugin.type != WebPluginInfo::PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS) {
241 if (plugin.name == ASCIIToUTF16(nacl::kNaClPluginName))
247 if (plugin.name == ASCIIToUTF16(kWidevineCdmDisplayName)) {
248 DCHECK(plugin.type == WebPluginInfo::PLUGIN_TYPE_PEPPER_OUT_OF_PROCESS);
555 WebPlugin** plugin) {
575 if (output.plugin.type == content::WebPluginInfo::PLUGIN_TYPE_BROWSER_PLUGIN)
580 *plugin = CreatePlugin(render_frame, frame, params, output);
589 return placeholder->plugin();
551 OverrideCreatePlugin( content::RenderFrame* render_frame, WebLocalFrame* frame, const WebPluginParams& params, WebPlugin** plugin) argument
616 const WebPluginInfo& plugin = output.plugin; local
940 GetNaClContentHandlerURL( const std::string& actual_mime_type, const content::WebPluginInfo& plugin) argument
[all...]
/external/chromium_org/content/renderer/npapi/
H A Dwebplugin_delegate_proxy.cc198 WebPluginImpl* plugin,
204 plugin_(plugin),
234 // Ensure that the renderer doesn't think the plugin still has focus.
267 // the same plugin between now and the time 'this' is actually deleted.
270 // released, the plugin will give us a new FD, and we'll assert when trying
287 // to indicate that the plugin hasn't crashed, and that the problem
312 // We got an invalid handle. Either the plugin couldn't be found (which
313 // shouldn't happen, since if we got here the plugin should exist) or the
314 // plugin crashed on initialization.
320 // Return true so that the plugin widge
197 WebPluginDelegateProxy( WebPluginImpl* plugin, const std::string& mime_type, const base::WeakPtr<RenderViewImpl>& render_view, RenderFrameImpl* render_frame) argument
[all...]
/external/chromium_org/content/renderer/
H A Drenderer_webkitplatformsupport_impl.cc789 const WebPluginInfo& plugin = plugins[i]; local
792 plugin.name, plugin.desc,
793 plugin.path.BaseName().AsUTF16Unsafe());
795 for (size_t j = 0; j < plugin.mime_types.size(); ++j) {
796 const WebPluginMimeType& mime_type = plugin.mime_types[j];
H A Drender_frame_impl.cc533 // Update the cursor appearance immediately if the requesting plugin is the
535 // picked up until the plugin gets the next input event. That is bad if, e.g.,
536 // the plugin would like to set an invisible cursor when there isn't any user
582 PepperPluginInstanceImpl* plugin) {
587 GetRenderWidget()->routing_id(), plugin, active_url,
628 // When a PPAPI plugin has focus, we bypass WebKit.
661 // When a PPAPI plugin has focus, we bypass WebKit.
1509 LOG(WARNING) << "Pepper module/plugin creation failed.";
1551 blink::WebPlugin* plugin = NULL; local
1553 this, frame, params, &plugin)) {
581 CreatePepperFullscreenContainer( PepperPluginInstanceImpl* plugin) argument
[all...]
H A Drender_view_impl.cc1772 // TODO(japhet): This should be a DCHECK, but the pdf plugin sometimes
2603 return webview()->mainFrame()->document().to<WebPluginDocument>().plugin();
2607 return plugin_find_handler_->container()->plugin();
2617 blink::WebPlugin* plugin = GetWebPluginForFind(); local
2618 // Check if the plugin still exists in the document.
2619 if (plugin) {
2622 plugin->selectFindResult(options.forward);
2624 if (!plugin->startFind(
2737 blink::WebPlugin* plugin = GetWebPluginForFind();
2738 if (plugin) {
[all...]
/external/chromium_org/content/shell/tools/plugin/
H A DPluginObject.cpp35 #include "content/shell/tools/plugin/test_object.h"
42 // Helper function which takes in the plugin window object for logging to the
263 PluginObject* plugin = reinterpret_cast<PluginObject*>(obj);
265 browser->getvalue(plugin->npp, NPNVWindowNPObject, &windowScriptObject);
270 if (browser->invoke(plugin->npp,
312 PluginObject* plugin = reinterpret_cast<PluginObject*>(obj); local
322 BOOLEAN_TO_NPVARIANT(plugin->eventLogging, *result);
326 BOOLEAN_TO_NPVARIANT(plugin->logDestroy, *result);
330 BOOLEAN_TO_NPVARIANT(plugin->stream, *result);
334 NPObject* testObject = plugin
396 PluginObject* plugin = reinterpret_cast<PluginObject*>(obj); local
1204 PluginObject* plugin = reinterpret_cast<PluginObject*>(header); local
1341 PluginObject* plugin = reinterpret_cast<PluginObject*>(header); local
1387 PluginObject* plugin = reinterpret_cast<PluginObject*>(header); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.runtime_3.6.0.v20100505.jar ... String name org.eclipse.core.runtime.Plugin plugin } org/eclipse/core/internal/preferences/legacy/PreferenceForwarder.class ...
H A Dorg.eclipse.update.configurator_3.3.100.v20100512.jar ... INF/ OSGI-INF/bundleGroup.xml about.html plugin.properties org/ org/eclipse/ org/eclipse/update/ org/eclipse ...
H A Dorg.eclipse.core.variables_3.2.400.v20100505.jar ... RSA META-INF/ META-INF/eclipse.inf plugin.xml .api_description about.html plugin.properties ...
H A Dorg.eclipse.equinox.p2.ui.sdk_1.0.100.v20100513.jar ... RSA META-INF/ META-INF/eclipse.inf plugin.xml .api_description OSGI-INF/ OSGI-INF ...
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jar ... RSA META-INF/ META-INF/eclipse.inf plugin.xml .api_description about.html about.ini ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.cc240 // The default text input type is to regard the plugin always accept text input.
242 // unaware plugins (e.g., PPAPI Flash or PDF plugin for M16).
335 // document containing the given plugin instance. On success, returns true. If
362 // a plugin. Some poorly behaving plugins (like Flash) incorrectly report that
390 PluginInstanceLockTarget(PepperPluginInstanceImpl* plugin) argument
391 : plugin_(plugin) {}
585 // instance. See crbug.com/343576 for more information. Once the plugin
620 // Notify all the plugin objects of deletion. This will prevent blink from
621 // calling into the plugin any more.
651 // If we switched from the NaCl plugin modul
[all...]
/external/lldb/include/lldb/Target/
H A DProcess.h705 SetProcessPluginName (const char *plugin) argument
707 if (plugin && plugin[0])
708 m_plugin_name.assign (plugin);
915 SetProcessPluginName (const char *plugin) argument
917 if (plugin && plugin[0])
918 m_plugin_name.assign (plugin);
1586 /// then look for a plugin whose PluginInfo's name matches
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
H A DbuildTools.jar ... r String line String line int start int end String plugin String version int startv int endv String l java. ...

Completed in 534 milliseconds

1234567