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

Unified Diff: mandoline/ui/aura/surface_context_factory.h

Issue 1402213002: Moves mandoline/ui/aura to ui/views/mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disable presubmit Created 5 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
« no previous file with comments | « mandoline/ui/aura/surface_binding.cc ('k') | mandoline/ui/aura/surface_context_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/ui/aura/surface_context_factory.h
diff --git a/mandoline/ui/aura/surface_context_factory.h b/mandoline/ui/aura/surface_context_factory.h
deleted file mode 100644
index dd859eba001fa1ab2c7402d00b9934186622a2e3..0000000000000000000000000000000000000000
--- a/mandoline/ui/aura/surface_context_factory.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2015 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 MANDOLINE_UI_AURA_SURFACE_CONTEXT_FACTORY_H_
-#define MANDOLINE_UI_AURA_SURFACE_CONTEXT_FACTORY_H_
-
-#include "components/mus/gles2/mojo_gpu_memory_buffer_manager.h"
-#include "components/mus/gles2/raster_thread_helper.h"
-#include "mandoline/ui/aura/surface_binding.h"
-#include "ui/compositor/compositor.h"
-
-namespace mojo {
-class Shell;
-}
-
-namespace mus {
-class View;
-}
-
-namespace mandoline {
-
-class SurfaceContextFactory : public ui::ContextFactory {
- public:
- SurfaceContextFactory(mojo::Shell* shell, mus::View* view);
- ~SurfaceContextFactory() override;
-
- private:
- // ContextFactory:
- void CreateOutputSurface(base::WeakPtr<ui::Compositor> compositor) override;
- scoped_ptr<ui::Reflector> CreateReflector(
- ui::Compositor* mirrored_compositor,
- ui::Layer* mirroring_layer) override;
- void RemoveReflector(ui::Reflector* reflector) override;
- scoped_refptr<cc::ContextProvider> SharedMainThreadContextProvider() override;
- void RemoveCompositor(ui::Compositor* compositor) override;
- bool DoesCreateTestContexts() override;
- uint32 GetImageTextureTarget(gfx::BufferFormat format,
- gfx::BufferUsage usage) override;
- cc::SharedBitmapManager* GetSharedBitmapManager() override;
- gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override;
- cc::TaskGraphRunner* GetTaskGraphRunner() override;
- scoped_ptr<cc::SurfaceIdAllocator> CreateSurfaceIdAllocator() override;
- void ResizeDisplay(ui::Compositor* compositor,
- const gfx::Size& size) override;
-
- SurfaceBinding surface_binding_;
- uint32_t next_surface_id_namespace_;
- gles2::RasterThreadHelper raster_thread_helper_;
- mus::MojoGpuMemoryBufferManager gpu_memory_buffer_manager_;
-
- DISALLOW_COPY_AND_ASSIGN(SurfaceContextFactory);
-};
-
-} // namespace mandoline
-
-#endif // MANDOLINE_UI_AURA_SURFACE_CONTEXT_FACTORY_H_
« no previous file with comments | « mandoline/ui/aura/surface_binding.cc ('k') | mandoline/ui/aura/surface_context_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698