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

Side by Side Diff: services/ui/surfaces/display_compositor_factory_delegate.h

Issue 2539893002: Mus: Implement GpuMain mojo interface (Closed)
Patch Set: Cleanup of naming some more Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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.
4
5 #ifndef SERVICES_UI_SURFACES_DISPLAY_COMPOSITOR_FACTORY_DELEGATE_H_
6 #define SERVICES_UI_SURFACES_DISPLAY_COMPOSITOR_FACTORY_DELEGATE_H_
7
8 namespace gpu {
9 class GpuMemoryBufferManager;
10 }
11
12 namespace ui {
13
14 class DisplayCompositorFactoryDelegate {
15 public:
16 virtual std::unique_ptr<gpu::GpuMemoryBufferManager>
17 CreateGpuMemoryBufferManager() = 0;
18
19 protected:
20 ~DisplayCompositorFactoryDelegate() {}
21 };
22
23 } // namespace ui
24
25 #endif // SERVICES_UI_SURFACES_DISPLAY_COMPOSITOR_FACTORY_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698