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

Side by Side Diff: mojo/aura/surface_context_factory.cc

Issue 634083002: gpu: Compositor management of GpuMemoryBuffer instances. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cc-pre-chromium-image-refactor
Patch Set: mac build fix Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "mojo/aura/surface_context_factory.h" 5 #include "mojo/aura/surface_context_factory.h"
6 6
7 #include "cc/output/output_surface.h" 7 #include "cc/output/output_surface.h"
8 #include "cc/resources/shared_bitmap_manager.h" 8 #include "cc/resources/shared_bitmap_manager.h"
9 #include "mojo/public/interfaces/application/shell.mojom.h" 9 #include "mojo/public/interfaces/application/shell.mojom.h"
10 #include "mojo/services/public/cpp/view_manager/view.h" 10 #include "mojo/services/public/cpp/view_manager/view.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 } 44 }
45 45
46 bool SurfaceContextFactory::DoesCreateTestContexts() { 46 bool SurfaceContextFactory::DoesCreateTestContexts() {
47 return false; 47 return false;
48 } 48 }
49 49
50 cc::SharedBitmapManager* SurfaceContextFactory::GetSharedBitmapManager() { 50 cc::SharedBitmapManager* SurfaceContextFactory::GetSharedBitmapManager() {
51 return nullptr; 51 return nullptr;
52 } 52 }
53 53
54 cc::GpuMemoryBufferManager* SurfaceContextFactory::GetGpuMemoryBufferManager() {
55 return nullptr;
56 }
57
54 base::MessageLoopProxy* SurfaceContextFactory::GetCompositorMessageLoop() { 58 base::MessageLoopProxy* SurfaceContextFactory::GetCompositorMessageLoop() {
55 return nullptr; 59 return nullptr;
56 } 60 }
57 61
58 } // namespace mojo 62 } // namespace mojo
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698