• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2015 The Chromium Embedded Framework Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be found
3 // in the LICENSE file.
4 
5 #ifndef CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_KEYED_SERVICE_FACTORIES_H_
6 #define CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_KEYED_SERVICE_FACTORIES_H_
7 
8 namespace cef {
9 
10 // Ensures the existence of any BrowserContextKeyedServiceFactory provided by
11 // the CEF extensions code or otherwise required by CEF. See
12 // libcef/common/extensions/api/README.txt for additional details.
13 void EnsureBrowserContextKeyedServiceFactoriesBuilt();
14 
15 }  // namespace cef
16 
17 #endif  // CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_KEYED_SERVICE_FACTORIES_H_
18