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

Unified Diff: components/translate/content/renderer/renderer_cld_data_provider_factory.h

Issue 2034413003: Delete the non-static CLD data source logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to latest master Created 4 years, 6 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
Index: components/translate/content/renderer/renderer_cld_data_provider_factory.h
diff --git a/components/translate/content/renderer/renderer_cld_data_provider_factory.h b/components/translate/content/renderer/renderer_cld_data_provider_factory.h
deleted file mode 100644
index 9f457d452bde8b3c8b5dcbc5ea9618faad222638..0000000000000000000000000000000000000000
--- a/components/translate/content/renderer/renderer_cld_data_provider_factory.h
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright 2014 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.
-
-// NOT DEAD CODE!
-// This code isn't dead, even if it isn't currently being used. Please refer to:
-// https://www.chromium.org/developers/how-tos/compact-language-detector-cld-data-source-configuration
-
-#ifndef COMPONENTS_TRANSLATE_CONTENT_RENDERER_RENDERER_CLD_DATA_PROVIDER_FACTORY_H_
-#define COMPONENTS_TRANSLATE_CONTENT_RENDERER_RENDERER_CLD_DATA_PROVIDER_FACTORY_H_
-
-#include <memory>
-
-#include "base/macros.h"
-#include "components/translate/content/renderer/renderer_cld_data_provider.h"
-
-namespace content {
-class RenderFrameObserver;
-}
-
-namespace translate {
-
-// A factory for the Renderer side of CLD Data Providers. The embedder should
-// set an instance as soon as feasible during startup. The renderer process will
-// use this factory to create the one RendererCldDataProvider for each render
-// view in order to communicate with a BrowserCldDataProvider in the browser
-// process. For more information on the RendererCldDataProvider, see:
-// ../renderer/renderer_cld_data_provider.h
-class RendererCldDataProviderFactory {
- public:
- RendererCldDataProviderFactory() {}
- virtual ~RendererCldDataProviderFactory() {}
-
- // Create and return a new instance of a RendererCldDataProvider. The default
- // implementation of this method produces a no-op RendererCldDataProvider that
- // is suitable only when CLD data has been statically linked.
- // Every invocation creates a new provider; the caller is responsible for
- // deleting the object when it is no longer needed.
- virtual std::unique_ptr<RendererCldDataProvider>
- CreateRendererCldDataProvider(
- content::RenderFrameObserver* render_frame_observer);
-
- // Returns true if and only if the current instance for this process is not
- // NULL.
- static bool IsInitialized();
-
- // Sets the default factory for this process, i.e. the factory to be used
- // unless the embedder calls Set(RendererCldDataProviderFactory*). This is the
- // method that normal (i.e., non-test) Chromium code should use; embedders can
- // and should use the unconditional Set(RendererCldDataProviderFactory*)
- // method instead. If a default factory has already been set, this method does
- // nothing.
- static void SetDefault(RendererCldDataProviderFactory* instance);
-
- // Unconditionally sets the factory for this process, overwriting any
- // previously-configured default. Normal Chromium code should never use this
- // method; it is provided for embedders to inject a factory from outside of
- // the Chromium code base. Test code can also use this method to force the
- // runtime to have a desired behavior.
- static void Set(RendererCldDataProviderFactory* instance);
-
- // Returns the instance of the factory previously set by Set()/SetDefault().
- // If no instance has been set, a default factory will be returned that
- // produces no-op RendererCldDataProviders as described by
- // CreateRendererCldDataProvider(...) above.
- static RendererCldDataProviderFactory* Get();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(RendererCldDataProviderFactory);
-};
-
-} // namespace translate
-
-#endif // COMPONENTS_TRANSLATE_CONTENT_RENDERER_RENDERER_CLD_DATA_PROVIDER_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698