Searched defs:plugins (Results 1 - 25 of 76) sorted by relevance

1234

/external/chromium_org/chrome/browser/plugins/
H A Dplugin_data_remover_helper.cc5 #include "chrome/browser/plugins/plugin_data_remover_helper.h"
7 #include "chrome/browser/plugins/plugin_prefs.h"
13 std::vector<content::WebPluginInfo> plugins; local
14 content::PluginDataRemover::GetSupportedPlugins(&plugins);
15 for (std::vector<content::WebPluginInfo>::const_iterator it = plugins.begin();
16 it != plugins.end(); ++it) {
H A Dplugin_status_pref_setter.cc5 #include "chrome/browser/plugins/plugin_status_pref_setter.h"
11 #include "chrome/browser/plugins/plugin_data_remover_helper.h"
12 #include "chrome/browser/plugins/plugin_prefs.h"
62 const std::vector<content::WebPluginInfo>& plugins) {
60 GotPlugins( scoped_refptr<PluginPrefs> plugin_prefs, const std::vector<content::WebPluginInfo>& plugins) argument
H A Dplugin_prefs_unittest.cc5 #include "chrome/browser/plugins/plugin_prefs.h"
53 const std::vector<content::WebPluginInfo>& plugins) {
239 // Set the state of any of the three plugins will affect the others.
270 // effect. And it shouldn't change the state of other plugins either, even if
52 GotPlugins(const base::Closure& quit_closure, const std::vector<content::WebPluginInfo>& plugins) argument
/external/chromium_org/components/plugins/renderer/
H A Dmobile_youtube_plugin.h8 #include "components/plugins/renderer/plugin_placeholder.h"
10 namespace plugins { namespace
44 } // namespace plugins
H A Dplugin_placeholder.h8 #include "components/plugins/renderer/webview_plugin.h"
20 namespace plugins { namespace
113 } // namespace plugins
/external/mockito/src/org/mockito/plugins/
H A DStackTraceCleanerProvider.java1 package org.mockito.plugins;
H A DMockMaker.java5 package org.mockito.plugins;
27 * <li>A file "<code>mockito-extensions/org.mockito.plugins.MockMaker</code>". The content of this file is
31 * <p>Note that if several <code>mockito-extensions/org.mockito.plugins.MockMaker</code> files exists in the classpath
/external/chromium_org/content/common/
H A Dplugin_list_posix.cc19 std::vector<base::FilePath>* plugins) {
24 std::vector<WebPluginInfo>* plugins) {
29 NOTREACHED() << "NPAPI plugins are not supported";
18 GetPluginsInDir(const base::FilePath& dir_path, std::vector<base::FilePath>* plugins) argument
22 ShouldLoadPluginUsingPluginList( const WebPluginInfo& info, std::vector<WebPluginInfo>* plugins) argument
H A Dpepper_plugin_list.cc21 // The maximum number of plugins allowed to be registered from command line.
24 // Appends any plugins from the command line to the given vector.
25 void ComputePluginsFromCommandLine(std::vector<PepperPluginInfo>* plugins) { argument
31 // NOTE: In theory we could have unlimited number of plugins registered in
32 // command line. But in practice, 64 plugins should be more than enough.
60 VLOG(1) << plugins_to_register << " pepper plugins registered from"
62 << kMaxPluginsToRegisterFromCommandLine << " plugins allowed)";
80 // This means we can't provide plugins from non-ASCII paths, but
117 // Command-line plugins get full permissions.
120 plugins
147 ComputePepperPluginList(std::vector<PepperPluginInfo>* plugins) argument
[all...]
H A Dplugin_list_unittest.cc16 base::FilePath::CharType kFooPath[] = FILE_PATH_LITERAL("/plugins/foo.plugin");
17 base::FilePath::CharType kBarPath[] = FILE_PATH_LITERAL("/plugins/bar.plugin");
69 std::vector<WebPluginInfo> plugins; local
70 plugin_list_.GetPlugins(&plugins, true);
71 EXPECT_EQ(2u, plugins.size());
72 EXPECT_TRUE(Contains(plugins, foo_plugin_));
73 EXPECT_TRUE(Contains(plugins, bar_plugin_));
80 // Simulate loading of the plugins.
84 std::vector<WebPluginInfo> plugins; local
85 plugin_list_.GetPlugins(&plugins, tru
92 std::vector<WebPluginInfo> plugins; local
[all...]
/external/chromium_org/athena/main/
H A Dathena_content_client.cc19 std::vector<content::PepperPluginInfo>* plugins) {
47 plugins->push_back(pdf);
49 ShellContentClient::AddPepperPlugins(plugins);
18 AddPepperPlugins( std::vector<content::PepperPluginInfo>* plugins) argument
/external/chromium_org/chrome/browser/metrics/
H A Dplugin_metrics_provider_unittest.cc74 std::vector<content::WebPluginInfo> plugins; local
75 plugins.push_back(CreateFakePluginInfo("p1", FILE_PATH_LITERAL("p1.plugin"),
77 plugins.push_back(CreateFakePluginInfo("p2", FILE_PATH_LITERAL("p2.plugin"),
79 provider.SetPluginsForTesting(plugins);
161 std::vector<content::WebPluginInfo> plugins; local
162 plugins.push_back(CreateFakePluginInfo("p1", FILE_PATH_LITERAL("p1.plugin"),
164 provider.SetPluginsForTesting(plugins);
/external/chromium_org/extensions/shell/common/
H A Dshell_content_client.cc30 // On Posix, plugins live in the module directory.
48 std::vector<content::PepperPluginInfo>* plugins) {
73 plugins->push_back(nacl);
47 AddPepperPlugins( std::vector<content::PepperPluginInfo>* plugins) argument
/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DDOMPluginArray.cpp21 #include "core/plugins/DOMPluginArray.h"
25 #include "platform/plugins/PluginData.h"
46 return data->plugins().size();
54 const Vector<PluginInfo>& plugins = data->plugins(); local
55 if (index >= plugins.size())
65 const Vector<PluginInfo>& plugins = data->plugins(); local
66 for (unsigned i = 0; i < plugins.size(); ++i) {
67 if (plugins[
78 const Vector<PluginInfo>& plugins = data->plugins(); local
[all...]
/external/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistration.cpp42 ClangCheckerRegistry(ArrayRef<std::string> plugins,
48 ClangCheckerRegistry::ClangCheckerRegistry(ArrayRef<std::string> plugins, argument
52 for (ArrayRef<std::string>::iterator i = plugins.begin(), e = plugins.end();
105 ArrayRef<std::string> plugins,
116 ClangCheckerRegistry allCheckers(plugins, &diags);
129 void ento::printCheckerHelp(raw_ostream &out, ArrayRef<std::string> plugins) { argument
133 ClangCheckerRegistry(plugins).printHelp(out);
103 createCheckerManager(AnalyzerOptions &opts, const LangOptions &langOpts, ArrayRef<std::string> plugins, DiagnosticsEngine &diags) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DFetchValidator.java22 * if all plugins defined in the features are present.
27 //directory containing of build source, parent of features and plugins
35 private Vector plugins; field in class:FetchValidator
100 plugins = parser.getPlugins();
105 // collect a list of missing plugins (or fragments), and features
108 Enumeration enumeration = plugins.elements();
112 if (new File(install + "/plugins/" + plugin).exists())
/external/chromium_org/chrome/browser/extensions/api/content_settings/
H A Dcontent_settings_api.cc22 #include "chrome/browser/plugins/plugin_finder.h"
23 #include "chrome/browser/plugins/plugin_installer.h"
266 const std::vector<content::WebPluginInfo>& plugins) {
270 for (std::vector<content::WebPluginInfo>::const_iterator it = plugins.begin();
271 it != plugins.end(); ++it) {
265 OnGotPlugins( const std::vector<content::WebPluginInfo>& plugins) argument
/external/chromium_org/chrome/browser/extensions/
H A Dplugin_manager.cc11 #include "chrome/browser/plugins/chrome_plugin_service_filter.h"
14 #include "chrome/common/extensions/api/plugins/plugins_handler.h"
52 const PluginInfo::PluginVector* plugins = PluginInfo::GetPlugins(extension); local
53 CHECK(plugins);
55 for (PluginInfo::PluginVector::const_iterator plugin = plugins->begin();
56 plugin != plugins->end();
117 const PluginInfo::PluginVector* plugins = PluginInfo::GetPlugins(extension); local
119 for (PluginInfo::PluginVector::const_iterator plugin = plugins->begin();
120 plugin != plugins->end();
173 // MIME type to plugins whic
[all...]
/external/chromium_org/chrome/common/extensions/api/plugins/
H A Dplugins_handler.cc5 #include "chrome/common/extensions/api/plugins/plugins_handler.h"
31 // Optional list of NPAPI plugins and associated properties for an extension.
32 PluginInfo::PluginVector plugins; member in struct:extensions::__anon5642::PluginManifestData
49 return data ? &data->plugins : NULL;
56 return data && !data->plugins.empty() ? true : false;
84 // Get plugins[i].path.
92 // Get plugins[i].content (optional).
103 // We don't allow extensions to load NPAPI plugins on Chrome OS, or under
105 // error messages. If the extension actually requires the plugins then
114 plugins_data->plugins
132 const extensions::PluginInfo::PluginVector* plugins = local
[all...]
/external/chromium_org/chrome/common/extensions/
H A Dsync_type_unittest.cc6 #include "chrome/common/extensions/api/plugins/plugins_handler.h"
55 base::ListValue* plugins = new base::ListValue(); local
59 plugins->Set(i, plugin);
61 source.Set(keys::kPlugins, plugins);
65 base::ListValue* plugins = new base::ListValue(); local
66 plugins->Set(0, new base::StringValue("plugin"));
67 source.Set(keys::kPermissions, plugins);
247 // These plugin tests don't make sense on Chrome OS, where extension plugins
/external/chromium_org/content/public/common/
H A Dcontent_client.h84 // Gives the embedder a chance to register its own pepper plugins.
86 std::vector<content::PepperPluginInfo>* plugins) {}
85 AddPepperPlugins( std::vector<content::PepperPluginInfo>* plugins) argument
/external/chromium_org/content/utility/
H A Dutility_thread_impl.cc133 std::vector<WebPluginInfo> plugins; local
140 plugin_paths[i], &plugins, &plugin))
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DNavigator.cpp36 #include "core/plugins/DOMMimeTypeArray.h"
37 #include "core/plugins/DOMPluginArray.h"
87 DOMPluginArray* Navigator::plugins() const function in class:blink::Navigator
/external/chromium_org/third_party/WebKit/Source/platform/plugins/
H A DPluginData.cpp25 #include "platform/plugins/PluginData.h"
27 #include "platform/plugins/PluginListBuilder.h"
44 const Vector<PluginInfo>& plugins() function in class:blink::PluginCache
116 const Vector<PluginInfo>& plugins = pluginCache().plugins(); local
117 for (size_t i = 0; i < plugins.size(); ++i)
118 m_plugins.append(plugins[i]);
124 pluginCache().plugins(); // Force the plugins to be reloaded now.
129 const Vector<PluginInfo>& plugins local
[all...]
H A DPluginData.h55 const Vector<PluginInfo>& plugins() const { return m_plugins; } function in class:blink::PluginData
75 // Checks if any of the plugins handle this extension, and if so returns the

Completed in 2730 milliseconds

1234