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 COMPONENTS_TRANSLATE_CONTENT_BROWSER_BROWSER_CLD_UTILS_H_
6 #define COMPONENTS_TRANSLATE_CONTENT_BROWSER_BROWSER_CLD_UTILS_H_
8 #include "base/macros.h"
12 // Browser-side utilities for dealing with CLD data source configuration.
13 // This class exists primarily to avoid duplicating code in high-level targets
14 // such as the Chrome browser, Chrome shell, and so on.
15 class BrowserCldUtils
{
17 // Perform conditional configuration of the CLD data provider.
18 // If no specific BrowserCldDataProviderFactory has yet been set, an instance
19 // is created and assigned as appropriate for each platform. If a specific
20 // BrowserCldDataProviderFactory *has* been set, this method does nothing
21 // (as a side effect of setting the default factory, subsequent invocations
22 // do nothing - making this method reentrant).
24 // This method will not overwrite a data provider configured by an embedder.
25 // This method must be invoked prior to registering components with the
26 // component updater if the component updater implementation is to be used;
27 // it is best to ensure that this method is called as early as possible.
28 static void ConfigureDefaultDataProvider();
33 DISALLOW_COPY_AND_ASSIGN(BrowserCldUtils
);
36 } // namespace translate
38 #endif // COMPONENTS_TRANSLATE_CONTENT_BROWSER_BROWSER_CLD_UTILS_H_