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

Unified Diff: ui/compositor/test/default_context_factory.h

Issue 45963003: Move test-only ContextFactory implementations out of production targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert bad ui/base changes Created 7 years, 2 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: ui/compositor/test/default_context_factory.h
diff --git a/ui/compositor/test/default_context_factory.h b/ui/compositor/test/default_context_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..4d14e90c46670362068552536f1de203e2d78c73
--- /dev/null
+++ b/ui/compositor/test/default_context_factory.h
@@ -0,0 +1,53 @@
+// Copyright (c) 2013 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.
+
+#ifndef UI_COMPOSITOR_TEST_DEFAULT_CONTEXT_FACTORY_H_
+#define UI_COMPOSITOR_TEST_DEFAULT_CONTEXT_FACTORY_H_
+
+#include "ui/compositor/compositor.h"
+
+namespace webkit {
+namespace gpu {
+class ContextProviderInProcess;
+}
+}
+
+namespace ui {
+
+// The default factory that creates in-process contexts.
+class DefaultContextFactory : public ContextFactory {
+ public:
+ DefaultContextFactory();
+ virtual ~DefaultContextFactory();
+
+ // ContextFactory implementation
+ virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
+ Compositor* compositor) OVERRIDE;
+
+ virtual scoped_refptr<Reflector> CreateReflector(
+ Compositor* compositor,
+ Layer* layer) OVERRIDE;
+ virtual void RemoveReflector(scoped_refptr<Reflector> reflector) OVERRIDE;
+
+ virtual scoped_refptr<cc::ContextProvider>
+ OffscreenCompositorContextProvider() OVERRIDE;
+ virtual scoped_refptr<cc::ContextProvider>
+ SharedMainThreadContextProvider() OVERRIDE;
+ virtual void RemoveCompositor(Compositor* compositor) OVERRIDE;
+ virtual bool DoesCreateTestContexts() OVERRIDE;
+
+ bool Initialize();
+
+ private:
+ scoped_refptr<webkit::gpu::ContextProviderInProcess>
+ offscreen_compositor_contexts_;
+ scoped_refptr<webkit::gpu::ContextProviderInProcess>
+ shared_main_thread_contexts_;
+
+ DISALLOW_COPY_AND_ASSIGN(DefaultContextFactory);
+};
+
+} // namespace ui
+
+#endif // UI_COMPOSITOR_TEST_DEFAULT_CONTEXT_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698