Battery Status API: add UMA logging for Linux.
[chromium-blink-merge.git] / mojo / services / view_manager / context_factory_impl.h
blob0ef0fe3c2690376e7f23f2e5ca720eefd8d27c92
1 // Copyright 2013 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 MOJO_SERVICES_VIEW_MANAGER_CONTEXT_FACTORY_IMPL_H_
6 #define MOJO_SERVICES_VIEW_MANAGER_CONTEXT_FACTORY_IMPL_H_
8 #include "mojo/public/cpp/system/core.h"
9 #include "ui/compositor/compositor.h"
11 namespace webkit {
12 namespace gpu {
13 class ContextProviderInProcess;
17 namespace mojo {
18 namespace service {
20 // The default factory that creates in-process contexts.
21 class ContextFactoryImpl : public ui::ContextFactory {
22 public:
23 explicit ContextFactoryImpl(ScopedMessagePipeHandle command_buffer_handle);
24 virtual ~ContextFactoryImpl();
26 // ContextFactory implementation
27 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(
28 ui::Compositor* compositor, bool software_fallback) OVERRIDE;
30 virtual scoped_refptr<ui::Reflector> CreateReflector(
31 ui::Compositor* compositor,
32 ui::Layer* layer) OVERRIDE;
33 virtual void RemoveReflector(scoped_refptr<ui::Reflector> reflector) OVERRIDE;
35 virtual scoped_refptr<cc::ContextProvider>
36 SharedMainThreadContextProvider() OVERRIDE;
37 virtual void RemoveCompositor(ui::Compositor* compositor) OVERRIDE;
38 virtual bool DoesCreateTestContexts() OVERRIDE;
39 virtual cc::SharedBitmapManager* GetSharedBitmapManager() OVERRIDE;
40 virtual base::MessageLoopProxy* GetCompositorMessageLoop() OVERRIDE;
42 private:
43 scoped_refptr<webkit::gpu::ContextProviderInProcess>
44 shared_main_thread_contexts_;
46 ScopedMessagePipeHandle command_buffer_handle_;
48 // TODO(sky): for debugging, remove.
49 bool did_create_;
51 DISALLOW_COPY_AND_ASSIGN(ContextFactoryImpl);
54 } // namespace service
55 } // namespace mojo
57 #endif // MOJO_SERVICES_VIEW_MANAGER_CONTEXT_FACTORY_IMPL_H_