OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/gfx/ozone/surface_factory_ozone.h" | 5 #include "ui/gfx/ozone/surface_factory_ozone.h" |
6 | 6 |
7 #include <stdlib.h> | 7 #include <stdlib.h> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "ui/gfx/vsync_provider.h" | 10 #include "ui/gfx/vsync_provider.h" |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 const int32* desired_attributes) { | 49 const int32* desired_attributes) { |
50 return desired_attributes; | 50 return desired_attributes; |
51 } | 51 } |
52 | 52 |
53 void SurfaceFactoryOzone::SetCursorImage(const SkBitmap& image) { | 53 void SurfaceFactoryOzone::SetCursorImage(const SkBitmap& image) { |
54 } | 54 } |
55 | 55 |
56 void SurfaceFactoryOzone::MoveCursorTo(const gfx::Point& location) { | 56 void SurfaceFactoryOzone::MoveCursorTo(const gfx::Point& location) { |
57 } | 57 } |
58 | 58 |
| 59 void* SurfaceFactoryOzone::GetFunctionPointerFromNativeLibrary( |
| 60 base::NativeLibrary library, |
| 61 const char* name) { |
| 62 return base::GetFunctionPointerFromNativeLibrary(library, name); |
| 63 } |
| 64 |
59 } // namespace gfx | 65 } // namespace gfx |
OLD | NEW |