OLD | NEW |
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 "ui/ozone/platform/caca/caca_window_manager.h" | 5 #include "ui/ozone/platform/caca/caca_window_manager.h" |
6 | 6 |
7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
8 #include "third_party/skia/include/core/SkBitmap.h" | 8 #include "third_party/skia/include/core/SkBitmap.h" |
9 #include "third_party/skia/include/core/SkCanvas.h" | 9 #include "third_party/skia/include/core/SkCanvas.h" |
10 #include "third_party/skia/include/core/SkSurface.h" | 10 #include "third_party/skia/include/core/SkSurface.h" |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 CacaWindowManager::~CacaWindowManager() { | 121 CacaWindowManager::~CacaWindowManager() { |
122 } | 122 } |
123 | 123 |
124 ui::SurfaceFactoryOzone::HardwareState CacaWindowManager::InitializeHardware() { | 124 ui::SurfaceFactoryOzone::HardwareState CacaWindowManager::InitializeHardware() { |
125 return INITIALIZED; | 125 return INITIALIZED; |
126 } | 126 } |
127 | 127 |
128 void CacaWindowManager::ShutdownHardware() { | 128 void CacaWindowManager::ShutdownHardware() { |
129 } | 129 } |
130 | 130 |
131 gfx::AcceleratedWidget CacaWindowManager::GetAcceleratedWidget() { | |
132 NOTREACHED(); | |
133 return gfx::kNullAcceleratedWidget; | |
134 } | |
135 | |
136 bool CacaWindowManager::LoadEGLGLES2Bindings( | 131 bool CacaWindowManager::LoadEGLGLES2Bindings( |
137 AddGLLibraryCallback add_gl_library, | 132 AddGLLibraryCallback add_gl_library, |
138 SetGLGetProcAddressProcCallback set_gl_get_proc_address) { | 133 SetGLGetProcAddressProcCallback set_gl_get_proc_address) { |
139 NOTREACHED(); | 134 NOTREACHED(); |
140 return false; | 135 return false; |
141 } | 136 } |
142 | 137 |
143 scoped_ptr<ui::SurfaceOzoneCanvas> CacaWindowManager::CreateCanvasForWidget( | 138 scoped_ptr<ui::SurfaceOzoneCanvas> CacaWindowManager::CreateCanvasForWidget( |
144 gfx::AcceleratedWidget widget) { | 139 gfx::AcceleratedWidget widget) { |
145 CacaWindow* window = windows_.Lookup(widget); | 140 CacaWindow* window = windows_.Lookup(widget); |
146 DCHECK(window); | 141 DCHECK(window); |
147 | 142 |
148 scoped_ptr<CacaSurface> canvas(new CacaSurface(window)); | 143 scoped_ptr<CacaSurface> canvas(new CacaSurface(window)); |
149 CHECK(canvas->Initialize()); | 144 CHECK(canvas->Initialize()); |
150 return canvas.PassAs<ui::SurfaceOzoneCanvas>(); | 145 return canvas.PassAs<ui::SurfaceOzoneCanvas>(); |
151 } | 146 } |
152 | 147 |
153 } // namespace ui | 148 } // namespace ui |
OLD | NEW |