| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef UI_GL_ANGLE_PLATFORM_IMPL_H_ | 5 #ifndef UI_GL_ANGLE_PLATFORM_IMPL_H_ |
| 6 #define UI_GL_ANGLE_PLATFORM_IMPL_H_ | 6 #define UI_GL_ANGLE_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 // Implements the ANGLE platform interface, for functionality like | 8 // Implements the ANGLE platform interface, for functionality like |
| 9 // histograms and trace profiling. | 9 // histograms and trace profiling. |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "third_party/angle/include/platform/Platform.h" | 12 #include "third_party/angle/include/platform/Platform.h" |
| 13 | 13 |
| 14 namespace gfx { | 14 namespace gl { |
| 15 | 15 |
| 16 // Derives the base ANGLE platform and provides implementations | 16 // Derives the base ANGLE platform and provides implementations |
| 17 class ANGLEPlatformImpl : public angle::Platform { | 17 class ANGLEPlatformImpl : public angle::Platform { |
| 18 public: | 18 public: |
| 19 ANGLEPlatformImpl(); | 19 ANGLEPlatformImpl(); |
| 20 ~ANGLEPlatformImpl() override; | 20 ~ANGLEPlatformImpl() override; |
| 21 | 21 |
| 22 // angle::Platform: | 22 // angle::Platform: |
| 23 double currentTime() override; | 23 double currentTime() override; |
| 24 double monotonicallyIncreasingTime() override; | 24 double monotonicallyIncreasingTime() override; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 47 void histogramEnumeration(const char* name, | 47 void histogramEnumeration(const char* name, |
| 48 int sample, | 48 int sample, |
| 49 int boundary_value) override; | 49 int boundary_value) override; |
| 50 void histogramSparse(const char* name, int sample) override; | 50 void histogramSparse(const char* name, int sample) override; |
| 51 void histogramBoolean(const char* name, bool sample) override; | 51 void histogramBoolean(const char* name, bool sample) override; |
| 52 | 52 |
| 53 private: | 53 private: |
| 54 DISALLOW_COPY_AND_ASSIGN(ANGLEPlatformImpl); | 54 DISALLOW_COPY_AND_ASSIGN(ANGLEPlatformImpl); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace gfx | 57 } // namespace gl |
| 58 | 58 |
| 59 #endif // UI_GL_ANGLE_PLATFORM_IMPL_H_ | 59 #endif // UI_GL_ANGLE_PLATFORM_IMPL_H_ |
| OLD | NEW |