Battery Status API: add UMA logging for Linux.
[chromium-blink-merge.git] / mojo / services / view_manager / context_factory_impl.cc
bloba4f7d90dcedc4e67e36641b7591559faf1b1d11b
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 #include "mojo/services/view_manager/context_factory_impl.h"
7 #include "cc/output/output_surface.h"
8 #include "mojo/cc/context_provider_mojo.h"
9 #include "ui/compositor/reflector.h"
10 #include "ui/gl/gl_implementation.h"
11 #include "ui/gl/gl_surface.h"
12 #include "webkit/common/gpu/context_provider_in_process.h"
13 #include "webkit/common/gpu/grcontext_for_webgraphicscontext3d.h"
14 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h"
16 namespace mojo {
17 namespace service {
19 ContextFactoryImpl::ContextFactoryImpl(
20 ScopedMessagePipeHandle command_buffer_handle)
21 : command_buffer_handle_(command_buffer_handle.Pass()),
22 did_create_(false) {
23 DCHECK(command_buffer_handle_.is_valid());
26 ContextFactoryImpl::~ContextFactoryImpl() {
29 scoped_ptr<cc::OutputSurface> ContextFactoryImpl::CreateOutputSurface(
30 ui::Compositor* compositor, bool software_fallback) {
31 DCHECK(!did_create_);
32 did_create_ = true;
33 DCHECK(command_buffer_handle_.is_valid());
34 return make_scoped_ptr(
35 new cc::OutputSurface(
36 new ContextProviderMojo(command_buffer_handle_.Pass())));
39 scoped_refptr<ui::Reflector> ContextFactoryImpl::CreateReflector(
40 ui::Compositor* mirroed_compositor,
41 ui::Layer* mirroring_layer) {
42 return NULL;
45 void ContextFactoryImpl::RemoveReflector(
46 scoped_refptr<ui::Reflector> reflector) {
49 scoped_refptr<cc::ContextProvider>
50 ContextFactoryImpl::SharedMainThreadContextProvider() {
51 if (!shared_main_thread_contexts_.get() ||
52 shared_main_thread_contexts_->DestroyedOnMainThread()) {
53 bool lose_context_when_out_of_memory = false;
54 shared_main_thread_contexts_ =
55 webkit::gpu::ContextProviderInProcess::CreateOffscreen(
56 lose_context_when_out_of_memory);
57 if (shared_main_thread_contexts_.get() &&
58 !shared_main_thread_contexts_->BindToCurrentThread())
59 shared_main_thread_contexts_ = NULL;
61 return shared_main_thread_contexts_;
64 void ContextFactoryImpl::RemoveCompositor(ui::Compositor* compositor) {
67 bool ContextFactoryImpl::DoesCreateTestContexts() { return false; }
69 cc::SharedBitmapManager* ContextFactoryImpl::GetSharedBitmapManager() {
70 return NULL;
73 base::MessageLoopProxy* ContextFactoryImpl::GetCompositorMessageLoop() {
74 return NULL;
77 } // namespace service
78 } // namespace mojo