| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 } | 114 } |
| 115 | 115 |
| 116 void CacaWindowManager::RemoveWindow(int window_id, CacaWindow* window) { | 116 void CacaWindowManager::RemoveWindow(int window_id, CacaWindow* window) { |
| 117 DCHECK_EQ(window, windows_.Lookup(window_id)); | 117 DCHECK_EQ(window, windows_.Lookup(window_id)); |
| 118 windows_.Remove(window_id); | 118 windows_.Remove(window_id); |
| 119 } | 119 } |
| 120 | 120 |
| 121 CacaWindowManager::~CacaWindowManager() { | 121 CacaWindowManager::~CacaWindowManager() { |
| 122 } | 122 } |
| 123 | 123 |
| 124 ui::SurfaceFactoryOzone::HardwareState CacaWindowManager::InitializeHardware() { | |
| 125 return INITIALIZED; | |
| 126 } | |
| 127 | |
| 128 void CacaWindowManager::ShutdownHardware() { | |
| 129 } | |
| 130 | |
| 131 bool CacaWindowManager::LoadEGLGLES2Bindings( | 124 bool CacaWindowManager::LoadEGLGLES2Bindings( |
| 132 AddGLLibraryCallback add_gl_library, | 125 AddGLLibraryCallback add_gl_library, |
| 133 SetGLGetProcAddressProcCallback set_gl_get_proc_address) { | 126 SetGLGetProcAddressProcCallback set_gl_get_proc_address) { |
| 134 NOTREACHED(); | 127 NOTREACHED(); |
| 135 return false; | 128 return false; |
| 136 } | 129 } |
| 137 | 130 |
| 138 scoped_ptr<ui::SurfaceOzoneCanvas> CacaWindowManager::CreateCanvasForWidget( | 131 scoped_ptr<ui::SurfaceOzoneCanvas> CacaWindowManager::CreateCanvasForWidget( |
| 139 gfx::AcceleratedWidget widget) { | 132 gfx::AcceleratedWidget widget) { |
| 140 CacaWindow* window = windows_.Lookup(widget); | 133 CacaWindow* window = windows_.Lookup(widget); |
| 141 DCHECK(window); | 134 DCHECK(window); |
| 142 | 135 |
| 143 scoped_ptr<CacaSurface> canvas(new CacaSurface(window)); | 136 scoped_ptr<CacaSurface> canvas(new CacaSurface(window)); |
| 144 CHECK(canvas->Initialize()); | 137 CHECK(canvas->Initialize()); |
| 145 return canvas.PassAs<ui::SurfaceOzoneCanvas>(); | 138 return canvas.PassAs<ui::SurfaceOzoneCanvas>(); |
| 146 } | 139 } |
| 147 | 140 |
| 148 } // namespace ui | 141 } // namespace ui |
| OLD | NEW |