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

Unified Diff: ui/compositor/test/in_process_context_factory.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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/in_process_context_factory.cc
diff --git a/ui/compositor/test/in_process_context_factory.cc b/ui/compositor/test/in_process_context_factory.cc
deleted file mode 100644
index 3bf0d3ebf764648e733b667c61598d52b9afdd2b..0000000000000000000000000000000000000000
--- a/ui/compositor/test/in_process_context_factory.cc
+++ /dev/null
@@ -1,117 +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.
-
-#include "ui/compositor/test/in_process_context_factory.h"
-
-#include "base/command_line.h"
-#include "base/threading/thread.h"
-#include "cc/surfaces/surface_id_allocator.h"
-#include "cc/test/pixel_test_output_surface.h"
-#include "cc/test/test_shared_bitmap_manager.h"
-#include "ui/compositor/compositor_switches.h"
-#include "ui/compositor/reflector.h"
-#include "ui/gl/gl_implementation.h"
-#include "ui/gl/gl_surface.h"
-#include "webkit/common/gpu/context_provider_in_process.h"
-#include "webkit/common/gpu/grcontext_for_webgraphicscontext3d.h"
-#include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h"
-
-namespace ui {
-
-InProcessContextFactory::InProcessContextFactory()
- : next_surface_id_namespace_(1u) {
- DCHECK_NE(gfx::GetGLImplementation(), gfx::kGLImplementationNone)
- << "If running tests, ensure that main() is calling "
- << "gfx::GLSurface::InitializeOneOffForTests()";
-
-#if defined(OS_CHROMEOS)
- bool use_thread = !CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kUIDisableThreadedCompositing);
-#else
- bool use_thread = false;
-#endif
- if (use_thread) {
- compositor_thread_.reset(new base::Thread("Browser Compositor"));
- compositor_thread_->Start();
- }
-}
-
-InProcessContextFactory::~InProcessContextFactory() {}
-
-scoped_ptr<cc::OutputSurface> InProcessContextFactory::CreateOutputSurface(
- Compositor* compositor,
- bool software_fallback) {
- DCHECK(!software_fallback);
- blink::WebGraphicsContext3D::Attributes attrs;
- attrs.depth = false;
- attrs.stencil = false;
- attrs.antialias = false;
- attrs.shareResources = true;
- bool lose_context_when_out_of_memory = true;
-
- using webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl;
- scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d(
- WebGraphicsContext3DInProcessCommandBufferImpl::CreateViewContext(
- attrs, lose_context_when_out_of_memory, compositor->widget()));
- CHECK(context3d);
-
- using webkit::gpu::ContextProviderInProcess;
- scoped_refptr<ContextProviderInProcess> context_provider =
- ContextProviderInProcess::Create(context3d.Pass(), "UICompositor");
-
- return make_scoped_ptr(new cc::PixelTestOutputSurface(context_provider));
-}
-
-scoped_refptr<Reflector> InProcessContextFactory::CreateReflector(
- Compositor* mirroed_compositor,
- Layer* mirroring_layer) {
- return new Reflector();
-}
-
-void InProcessContextFactory::RemoveReflector(
- scoped_refptr<Reflector> reflector) {}
-
-scoped_refptr<cc::ContextProvider>
-InProcessContextFactory::SharedMainThreadContextProvider() {
- if (shared_main_thread_contexts_.get() &&
- !shared_main_thread_contexts_->DestroyedOnMainThread())
- return shared_main_thread_contexts_;
-
- bool lose_context_when_out_of_memory = false;
- shared_main_thread_contexts_ =
- webkit::gpu::ContextProviderInProcess::CreateOffscreen(
- lose_context_when_out_of_memory);
- if (shared_main_thread_contexts_.get() &&
- !shared_main_thread_contexts_->BindToCurrentThread())
- shared_main_thread_contexts_ = NULL;
-
- return shared_main_thread_contexts_;
-}
-
-void InProcessContextFactory::RemoveCompositor(Compositor* compositor) {}
-
-bool InProcessContextFactory::DoesCreateTestContexts() { return false; }
-
-cc::SharedBitmapManager* InProcessContextFactory::GetSharedBitmapManager() {
- return &shared_bitmap_manager_;
-}
-
-cc::GpuMemoryBufferManager*
-InProcessContextFactory::GetGpuMemoryBufferManager() {
- return &gpu_memory_buffer_manager_;
-}
-
-base::MessageLoopProxy* InProcessContextFactory::GetCompositorMessageLoop() {
- if (!compositor_thread_)
- return NULL;
- return compositor_thread_->message_loop_proxy().get();
-}
-
-scoped_ptr<cc::SurfaceIdAllocator>
-InProcessContextFactory::CreateSurfaceIdAllocator() {
- return make_scoped_ptr(
- new cc::SurfaceIdAllocator(next_surface_id_namespace_++));
-}
-
-} // namespace ui
« no previous file with comments | « ui/compositor/test/in_process_context_factory.h ('k') | ui/compositor/test/layer_animator_test_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698