diff options
author | dnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-14 17:33:33 +0000 |
---|---|---|
committer | dnicoara@chromium.org <dnicoara@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-14 17:33:33 +0000 |
commit | 2337ac47725dd5be972ea1a0d81876e40e31ab58 (patch) | |
tree | 15aa8662d0df9317bdb79dd7b31bbc73a5b63748 /content/common | |
parent | b6f76a1ae51b531ef1daabd9bd05fd8c87e61cd4 (diff) | |
download | chromium_src-2337ac47725dd5be972ea1a0d81876e40e31ab58.zip chromium_src-2337ac47725dd5be972ea1a0d81876e40e31ab58.tar.gz chromium_src-2337ac47725dd5be972ea1a0d81876e40e31ab58.tar.bz2 |
Moving the VSyncProvider interface to ui/gfx from ui/gl
Custom implementations of the VSyncProvider (such as the Ozone provider) need
to inherit from VSyncProvider. However, these implementations leave outside of
ui/gl and would break deps. Moving the interface to ui/gfx would allow such
implementations to inherit the VSyncProvider interface.
BUG=
Review URL: https://codereview.chromium.org/68893002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@235172 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/gpu/image_transport_surface.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/common/gpu/image_transport_surface.cc b/content/common/gpu/image_transport_surface.cc index 6e4d501..4ce6f40 100644 --- a/content/common/gpu/image_transport_surface.cc +++ b/content/common/gpu/image_transport_surface.cc @@ -15,9 +15,9 @@ #include "content/common/gpu/sync_point_manager.h" #include "content/common/gpu/texture_image_transport_surface.h" #include "gpu/command_buffer/service/gpu_scheduler.h" +#include "ui/gfx/vsync_provider.h" #include "ui/gl/gl_implementation.h" #include "ui/gl/gl_switches.h" -#include "ui/gl/vsync_provider.h" namespace content { |