1 // Copyright 2014 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 EXTENSIONS_BROWSER_PROCESS_MANAGER_DELEGATE_H_
6 #define EXTENSIONS_BROWSER_PROCESS_MANAGER_DELEGATE_H_
12 namespace extensions
{
14 // Customization of ProcessManager for the extension system embedder.
15 class ProcessManagerDelegate
{
17 virtual ~ProcessManagerDelegate() {}
19 // Returns true if the embedder allows background pages for the given
21 virtual bool IsBackgroundPageAllowed(
22 content::BrowserContext
* context
) const = 0;
24 // Returns true if the embedder wishes to defer starting up the renderers for
25 // extension background pages. If the embedder returns true it must call
26 // ProcessManager::MaybeCreateStartupBackgroundHosts() when it is ready. See
27 // ChromeProcessManagerDelegate for examples of how this is useful.
28 virtual bool DeferCreatingStartupBackgroundHosts(
29 content::BrowserContext
* context
) const = 0;
32 } // namespace extensions
34 #endif // EXTENSIONS_BROWSER_PROCESS_MANAGER_DELEGATE_H_