Switch global error menu icon to vectorized MD asset
[chromium-blink-merge.git] / chrome / browser / extensions / plugin_manager.h
blobb0424ab3f99807565d8866e2639620ff1bc4c855
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_EXTENSIONS_PLUGIN_MANAGER_H_
6 #define CHROME_BROWSER_EXTENSIONS_PLUGIN_MANAGER_H_
8 #include <set>
9 #include <string>
11 #include "base/scoped_observer.h"
12 #include "extensions/browser/browser_context_keyed_api_factory.h"
13 #include "extensions/browser/extension_registry_observer.h"
14 #include "extensions/common/manifest_handlers/nacl_modules_handler.h"
16 class GURL;
17 class Profile;
19 namespace content {
20 class BrowserContext;
23 namespace extensions {
24 class ExtensionRegistry;
26 class PluginManager : public BrowserContextKeyedAPI,
27 public ExtensionRegistryObserver {
28 public:
29 explicit PluginManager(content::BrowserContext* context);
30 ~PluginManager() override;
32 // BrowserContextKeyedAPI implementation.
33 static BrowserContextKeyedAPIFactory<PluginManager>* GetFactoryInstance();
35 private:
36 friend class BrowserContextKeyedAPIFactory<PluginManager>;
38 #if !defined(DISABLE_NACL)
40 // We implement some Pepper plugins using NaCl to take advantage of NaCl's
41 // strong sandbox. Typically, these NaCl modules are stored in extensions
42 // and registered here. Not all NaCl modules need to register for a MIME
43 // type, just the ones that are responsible for rendering a particular MIME
44 // type, like application/pdf. Note: We only register NaCl modules in the
45 // browser process.
46 void RegisterNaClModule(const NaClModuleInfo& info);
47 void UnregisterNaClModule(const NaClModuleInfo& info);
49 // Call UpdatePluginListWithNaClModules() after registering or unregistering
50 // a NaCl module to see those changes reflected in the PluginList.
51 void UpdatePluginListWithNaClModules();
53 extensions::NaClModuleInfo::List::iterator FindNaClModule(const GURL& url);
55 #endif // !defined(DISABLE_NACL)
57 // ExtensionRegistryObserver implementation.
58 void OnExtensionLoaded(content::BrowserContext* browser_context,
59 const Extension* extension) override;
60 void OnExtensionUnloaded(content::BrowserContext* browser_context,
61 const Extension* extension,
62 UnloadedExtensionInfo::Reason reason) override;
64 // BrowserContextKeyedAPI implementation.
65 static const char* service_name() { return "PluginManager"; }
66 static const bool kServiceIsNULLWhileTesting = true;
68 extensions::NaClModuleInfo::List nacl_module_list_;
70 Profile* profile_;
72 // Listen to extension load, unloaded notifications.
73 ScopedObserver<ExtensionRegistry, ExtensionRegistryObserver>
74 extension_registry_observer_;
77 } // namespace extensions
79 #endif // CHROME_BROWSER_EXTENSIONS_PLUGIN_MANAGER_H_