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

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

Issue 656263003: cc: Move GpuMemoryBufferManager interface to gpu namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn build fix Created 6 years, 1 month 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
« no previous file with comments | « mojo/aura/surface_context_factory.h ('k') | mojo/services/html_viewer/weblayertreeview_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "cc/surfaces/surface_id_allocator.h" 9 #include "cc/surfaces/surface_id_allocator.h"
10 #include "mojo/public/interfaces/application/shell.mojom.h" 10 #include "mojo/public/interfaces/application/shell.mojom.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 } 45 }
46 46
47 bool SurfaceContextFactory::DoesCreateTestContexts() { 47 bool SurfaceContextFactory::DoesCreateTestContexts() {
48 return false; 48 return false;
49 } 49 }
50 50
51 cc::SharedBitmapManager* SurfaceContextFactory::GetSharedBitmapManager() { 51 cc::SharedBitmapManager* SurfaceContextFactory::GetSharedBitmapManager() {
52 return nullptr; 52 return nullptr;
53 } 53 }
54 54
55 cc::GpuMemoryBufferManager* SurfaceContextFactory::GetGpuMemoryBufferManager() { 55 gpu::GpuMemoryBufferManager*
56 SurfaceContextFactory::GetGpuMemoryBufferManager() {
56 return nullptr; 57 return nullptr;
57 } 58 }
58 59
59 base::MessageLoopProxy* SurfaceContextFactory::GetCompositorMessageLoop() { 60 base::MessageLoopProxy* SurfaceContextFactory::GetCompositorMessageLoop() {
60 return nullptr; 61 return nullptr;
61 } 62 }
62 63
63 scoped_ptr<cc::SurfaceIdAllocator> 64 scoped_ptr<cc::SurfaceIdAllocator>
64 SurfaceContextFactory::CreateSurfaceIdAllocator() { 65 SurfaceContextFactory::CreateSurfaceIdAllocator() {
65 return nullptr; 66 return nullptr;
66 } 67 }
67 68
68 } // namespace mojo 69 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/aura/surface_context_factory.h ('k') | mojo/services/html_viewer/weblayertreeview_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698