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

Unified Diff: ash/mus/stub_context_factory.h

Issue 1683853003: Revert of ash/mash: Add a mus-client that sets up ash to provide the system ui for mash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « ash/mus/shell_delegate_mus.cc ('k') | ash/mus/stub_context_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/stub_context_factory.h
diff --git a/ash/mus/stub_context_factory.h b/ash/mus/stub_context_factory.h
deleted file mode 100644
index 0693f28603ade9b2353e7d9dbaa7f143a46d8ee5..0000000000000000000000000000000000000000
--- a/ash/mus/stub_context_factory.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2016 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 ASH_MUS_STUB_CONTEXT_FACTORY_H_
-#define ASH_MUS_STUB_CONTEXT_FACTORY_H_
-
-#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
-#include "ui/compositor/compositor.h"
-
-namespace cc {
-class SingleThreadTaskGraphRunner;
-}
-
-namespace ash {
-namespace sysui {
-
-class StubContextFactory : public ui::ContextFactory {
- public:
- StubContextFactory();
- ~StubContextFactory() override;
-
- private:
- // ui::ContextFactory implementation.
- 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_t 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;
-
- uint32_t next_surface_id_namespace_;
- scoped_ptr<cc::SingleThreadTaskGraphRunner> task_graph_runner_;
-
- DISALLOW_COPY_AND_ASSIGN(StubContextFactory);
-};
-
-} // namespace sysui
-} // namespace ash
-
-#endif // ASH_MUS_STUB_CONTEXT_FACTORY_H_
« no previous file with comments | « ash/mus/shell_delegate_mus.cc ('k') | ash/mus/stub_context_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698