Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(350)

Unified Diff: content/common/pepper_plugin_registry.h

Issue 20172004: Split PepperPluginRegistry into the pieces that are needed in each process. content/common only nee… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/pepper_plugin_list.cc ('k') | content/common/pepper_plugin_registry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/pepper_plugin_registry.h
===================================================================
--- content/common/pepper_plugin_registry.h (revision 213578)
+++ content/common/pepper_plugin_registry.h (working copy)
@@ -1,98 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_COMMON_PEPPER_PLUGIN_REGISTRY_H_
-#define CONTENT_COMMON_PEPPER_PLUGIN_REGISTRY_H_
-
-#include <list>
-#include <map>
-
-#include "content/public/common/pepper_plugin_info.h"
-
-// TODO(jam): refactor
-#include "content/renderer/pepper/plugin_module.h"
-
-namespace content {
-
-// Constructs a PepperPluginInfo from a WebPluginInfo. Returns false if
-// the operation is not possible, in particular the WebPluginInfo::type
-// must be one of the pepper types.
-bool MakePepperPluginInfo(const WebPluginInfo& webplugin_info,
- PepperPluginInfo* pepper_info);
-
-// This class holds references to all of the known pepper plugin modules.
-//
-// It keeps two lists. One list of preloaded in-process modules, and one list
-// is a list of all live modules (some of which may be out-of-process and hence
-// not preloaded).
-class PepperPluginRegistry {
- public:
- ~PepperPluginRegistry();
-
- static PepperPluginRegistry* GetInstance();
-
- // Computes the list of known pepper plugins.
- //
- // This method is static so that it can be used by the browser process, which
- // has no need to load the pepper plugin modules. It will re-compute the
- // plugin list every time it is called. Generally, code in the registry should
- // be using the cached plugin_list_ instead.
- CONTENT_EXPORT static void ComputeList(
- std::vector<PepperPluginInfo>* plugins);
-
- // Loads the (native) libraries but does not initialize them (i.e., does not
- // call PPP_InitializeModule). This is needed by the zygote on Linux to get
- // access to the plugins before entering the sandbox.
- static void PreloadModules();
-
- // Retrieves the information associated with the given plugin info. The
- // return value will be NULL if there is no such plugin.
- //
- // The returned pointer is owned by the PluginRegistry.
- const PepperPluginInfo* GetInfoForPlugin(const WebPluginInfo& info);
-
- // Returns an existing loaded module for the given path. It will search for
- // both preloaded in-process or currently active (non crashed) out-of-process
- // plugins matching the given name. Returns NULL if the plugin hasn't been
- // loaded.
- webkit::ppapi::PluginModule* GetLiveModule(const base::FilePath& path);
-
- // Notifies the registry that a new non-preloaded module has been created.
- // This is normally called for out-of-process plugins. Once this is called,
- // the module is available to be returned by GetModule(). The module will
- // automatically unregister itself by calling PluginModuleDestroyed().
- void AddLiveModule(const base::FilePath& path,
- webkit::ppapi::PluginModule* module);
-
- void PluginModuleDead(webkit::ppapi::PluginModule* dead_module);
-
- private:
- PepperPluginRegistry();
-
- // All known pepper plugins.
- std::vector<PepperPluginInfo> plugin_list_;
-
- // Plugins that have been preloaded so they can be executed in-process in
- // the renderer (the sandbox prevents on-demand loading).
- typedef std::map<base::FilePath,
- scoped_refptr<webkit::ppapi::PluginModule> >
- OwningModuleMap;
- OwningModuleMap preloaded_modules_;
-
- // A list of non-owning pointers to all currently-live plugin modules. This
- // includes both preloaded ones in preloaded_modules_, and out-of-process
- // modules whose lifetime is managed externally. This will contain only
- // non-crashed modules. If an out-of-process module crashes, it may
- // continue as long as there are WebKit references to it, but it will not
- // appear in this list.
- typedef std::map<base::FilePath, webkit::ppapi::PluginModule*>
- NonOwningModuleMap;
- NonOwningModuleMap live_modules_;
-
- DISALLOW_COPY_AND_ASSIGN(PepperPluginRegistry);
-};
-
-} // namespace content
-
-#endif // CONTENT_COMMON_PEPPER_PLUGIN_REGISTRY_H_
« no previous file with comments | « content/common/pepper_plugin_list.cc ('k') | content/common/pepper_plugin_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698