Searched refs:plugin_path (Results 1 - 25 of 66) sorted by relevance

123

/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dopen_with_browser.cc68 const base::FilePath& plugin_path) {
72 PluginService::GetInstance()->GetRegisteredPpapiPluginInfo(plugin_path);
86 base::FilePath plugin_path; local
87 PathService::Get(chrome::FILE_PDF_PLUGIN, &plugin_path);
88 return IsPepperPluginEnabled(profile, plugin_path);
94 base::FilePath plugin_path(
97 if (plugin_path.empty())
98 PathService::Get(chrome::FILE_PEPPER_FLASH_PLUGIN, &plugin_path);
99 return IsPepperPluginEnabled(profile, plugin_path);
67 IsPepperPluginEnabled(Profile* profile, const base::FilePath& plugin_path) argument
/external/chromium_org/chrome/browser/plugins/
H A Dchrome_plugin_service_filter.h51 void RestrictPluginToProfileAndOrigin(const base::FilePath& plugin_path,
56 void UnrestrictPlugin(const base::FilePath& plugin_path);
60 const base::FilePath& plugin_path);
71 bool IsPluginRestricted(const base::FilePath& plugin_path);
H A Dchrome_plugin_service_filter.cc69 const base::FilePath& plugin_path,
73 restricted_plugins_[plugin_path] =
78 const base::FilePath& plugin_path) {
80 restricted_plugins_.erase(plugin_path);
84 const base::FilePath& plugin_path) {
86 return restricted_plugins_.find(plugin_path) != restricted_plugins_.end();
166 const base::FilePath& plugin_path) {
169 details->authorized_plugins.insert(plugin_path);
68 RestrictPluginToProfileAndOrigin( const base::FilePath& plugin_path, Profile* profile, const GURL& origin) argument
77 UnrestrictPlugin( const base::FilePath& plugin_path) argument
83 IsPluginRestricted( const base::FilePath& plugin_path) argument
164 AuthorizePlugin( int render_process_id, const base::FilePath& plugin_path) argument
H A Dplugin_observer.h42 virtual void PluginCrashed(const base::FilePath& plugin_path,
71 void OnCouldNotLoadPlugin(const base::FilePath& plugin_path);
H A Dplugin_prefs.cc390 base::FilePath plugin_path(path);
403 // Extract the part of |plugin_path| that is relative to
405 // foo\bar.dll if |plugin_path| is <last_internal_dir>\foo\bar.dll.
407 // Every iteration the last path component from |plugin_path| is
410 while (last_internal_dir.IsParent(plugin_path)) {
411 relative_path = plugin_path.BaseName().Append(relative_path);
413 base::FilePath old_path = plugin_path;
414 plugin_path = plugin_path.DirName();
416 if (old_path == plugin_path) {
[all...]
/external/chromium_org/base/
H A Dnative_library_win.cc31 FilePath plugin_path = library_path.DirName(); local
32 if (!plugin_path.empty()) {
33 SetCurrentDirectory(plugin_path);
/external/chromium_org/content/browser/
H A Dplugin_service_impl.h90 virtual bool GetPluginInfoByPath(const base::FilePath& plugin_path,
96 const base::FilePath& plugin_path) OVERRIDE;
99 virtual void ForcePluginShutdown(const base::FilePath& plugin_path) OVERRIDE;
100 virtual bool IsPluginUnstable(const base::FilePath& plugin_path) OVERRIDE;
127 // 'plugin_path' if needed. If the process fails to start, the return value
130 int render_process_id, const base::FilePath& plugin_path);
133 const base::FilePath& plugin_path,
136 int render_process_id, const base::FilePath& plugin_path);
148 const base::FilePath& plugin_path,
159 void RegisterPluginCrash(const base::FilePath& plugin_path);
[all...]
H A Dplugin_service_impl.cc252 const base::FilePath& plugin_path) {
254 if (iter->info().path == plugin_path)
262 const base::FilePath& plugin_path,
265 if (iter->plugin_path() == plugin_path &&
276 if (iter->plugin_path() == broker_path)
285 const base::FilePath& plugin_path) {
288 if (filter_ && !filter_->CanLoadPlugin(render_process_id, plugin_path))
291 PluginProcessHost* plugin_host = FindNpapiPluginProcess(plugin_path);
296 if (!GetPluginInfoByPath(plugin_path,
251 FindNpapiPluginProcess( const base::FilePath& plugin_path) argument
261 FindPpapiPluginProcess( const base::FilePath& plugin_path, const base::FilePath& profile_data_directory) argument
283 FindOrStartNpapiPluginProcess( int render_process_id, const base::FilePath& plugin_path) argument
323 FindOrStartPpapiPluginProcess( int render_process_id, const base::FilePath& plugin_path, const base::FilePath& profile_data_directory) argument
367 FindOrStartPpapiBrokerProcess( int render_process_id, const base::FilePath& plugin_path) argument
414 OpenChannelToPpapiPlugin( int render_process_id, const base::FilePath& plugin_path, const base::FilePath& profile_data_directory, PpapiPluginProcessHost::PluginClient* client) argument
475 base::FilePath plugin_path; local
489 FinishOpenChannelToPlugin( int render_process_id, const base::FilePath& plugin_path, PluginProcessHost::Client* client) argument
556 GetPluginInfoByPath(const base::FilePath& plugin_path, WebPluginInfo* info) argument
670 GetRegisteredPpapiPluginInfo( const base::FilePath& plugin_path) argument
714 ForcePluginShutdown(const base::FilePath& plugin_path) argument
[all...]
H A Dplugin_loader_posix.h81 void OnPluginLoadFailed(uint32 index, const base::FilePath& plugin_path);
85 bool MaybeAddInternalPlugin(const base::FilePath& plugin_path);
H A Dplugin_loader_posix.cc171 const base::FilePath& plugin_path) {
174 << plugin_path.value() << "; index=" << index;
180 MaybeAddInternalPlugin(plugin_path);
185 const base::FilePath& plugin_path) {
189 if (it->path == plugin_path) {
170 OnPluginLoadFailed(uint32 index, const base::FilePath& plugin_path) argument
184 MaybeAddInternalPlugin( const base::FilePath& plugin_path) argument
H A Dplugin_data_remover_impl.cc94 base::FilePath plugin_path; local
96 plugin_path = plugins[0].path;
106 plugin_service->GetRegisteredPpapiPluginInfo(plugin_path);
110 plugin_service->OpenChannelToPpapiBroker(0, plugin_path, this);
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dplugin_module.cc70 base::FilePath plugin_path(plugin_name);
73 plugin_module_.Reset(base::LoadNativeLibrary(plugin_path, &error));
76 LOG(WARNING) << "Cannot load " << plugin_path.AsUTF8Unsafe()
/external/chromium_org/content/public/browser/
H A Dplugin_service.h86 virtual bool GetPluginInfoByPath(const base::FilePath& plugin_path,
93 const base::FilePath& plugin_path) = 0;
103 const base::FilePath& plugin_path) = 0;
109 virtual void ForcePluginShutdown(const base::FilePath& plugin_path) = 0;
113 virtual bool IsPluginUnstable(const base::FilePath& plugin_path) = 0;
/external/chromium_org/chrome/browser/metrics/
H A Dmetrics_services_manager.cc57 const base::FilePath& plugin_path) {
58 GetChromeMetricsServiceClient()->LogPluginLoadingError(plugin_path);
56 OnPluginLoadingError( const base::FilePath& plugin_path) argument
H A Dmetrics_services_manager.h52 void OnPluginLoadingError(const base::FilePath& plugin_path);
/external/chromium_org/chrome/browser/
H A Dpepper_broker_infobar_delegate.h32 const base::FilePath& plugin_path,
37 const base::FilePath& plugin_path,
H A Dpepper_broker_infobar_delegate.cc33 const base::FilePath& plugin_path,
60 url, plugin_path,
76 const base::FilePath& plugin_path,
83 plugin_path_(plugin_path),
30 Create( content::WebContents* web_contents, const GURL& url, const base::FilePath& plugin_path, const base::Callback<void(bool)>& callback) argument
74 PepperBrokerInfoBarDelegate( const GURL& url, const base::FilePath& plugin_path, const std::string& languages, HostContentSettingsMap* content_settings, TabSpecificContentSettings* tab_content_settings, const base::Callback<void(bool)>& callback) argument
/external/chromium_org/chrome/browser/ui/
H A Dhung_plugin_tab_helper.h47 virtual void PluginCrashed(const base::FilePath& plugin_path,
50 const base::FilePath& plugin_path,
/external/chromium_org/content/common/
H A Dplugin_list.h62 void AddExtraPluginPath(const base::FilePath& plugin_path);
63 void RemoveExtraPluginPath(const base::FilePath& plugin_path);
197 // Removes |plugin_path| from the list of extra plugin paths. Should only be
199 void RemoveExtraPluginPathLocked(const base::FilePath& plugin_path);
/external/chromium_org/content/plugin/
H A Dplugin_thread.cc72 base::FilePath plugin_path = local
81 preloaded_plugin_module_ = base::LoadNativeLibrary(plugin_path, NULL);
83 scoped_refptr<PluginLib> plugin(PluginLib::CreatePluginLib(plugin_path));
/external/chromium_org/chrome/browser/media/
H A Dmedia_browsertest.h51 virtual void PluginCrashed(const base::FilePath& plugin_path,
H A Dmedia_browsertest.cc73 void MediaBrowserTest::PluginCrashed(const base::FilePath& plugin_path, argument
75 VLOG(0) << "Plugin crashed: " << plugin_path.value();
/external/chromium_org/chrome/common/extensions/api/plugins/
H A Dplugins_handler.h20 PluginInfo(const base::FilePath& plugin_path, bool plugin_is_public);
H A Dplugins_handler.cc37 PluginInfo::PluginInfo(const base::FilePath& plugin_path, bool plugin_is_public) argument
38 : path(plugin_path), is_public(plugin_is_public) {
/external/chromium_org/content/renderer/pepper/
H A Dpepper_hung_plugin_filter.cc28 const base::FilePath& plugin_path,
31 : plugin_path_(plugin_path),
27 PepperHungPluginFilter( const base::FilePath& plugin_path, int frame_routing_id, int plugin_child_id) argument

Completed in 2408 milliseconds

123