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/browser/aura | |
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/browser/aura')
3 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/aura/software_browser_compositor_output_surface.cc b/content/browser/aura/software_browser_compositor_output_surface.cc index c715d00..e655dac 100644 --- a/content/browser/aura/software_browser_compositor_output_surface.cc +++ b/content/browser/aura/software_browser_compositor_output_surface.cc @@ -12,7 +12,7 @@ #include "content/browser/aura/browser_compositor_output_surface_proxy.h" #include "content/browser/renderer_host/render_widget_host_impl.h" #include "ui/events/latency_info.h" -#include "ui/gl/vsync_provider.h" +#include "ui/gfx/vsync_provider.h" namespace content { diff --git a/content/browser/aura/software_browser_compositor_output_surface_unittest.cc b/content/browser/aura/software_browser_compositor_output_surface_unittest.cc index bcc6bd5..dd2aae5e 100644 --- a/content/browser/aura/software_browser_compositor_output_surface_unittest.cc +++ b/content/browser/aura/software_browser_compositor_output_surface_unittest.cc @@ -8,8 +8,8 @@ #include "content/browser/aura/software_browser_compositor_output_surface.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/compositor/test/context_factories_for_test.h" +#include "ui/gfx/vsync_provider.h" #include "ui/gl/gl_implementation.h" -#include "ui/gl/vsync_provider.h" namespace { diff --git a/content/browser/aura/software_output_device_ozone.cc b/content/browser/aura/software_output_device_ozone.cc index 4acf3b1..661ab507 100644 --- a/content/browser/aura/software_output_device_ozone.cc +++ b/content/browser/aura/software_output_device_ozone.cc @@ -8,7 +8,7 @@ #include "ui/compositor/compositor.h" #include "ui/gfx/ozone/surface_factory_ozone.h" #include "ui/gfx/skia_util.h" -#include "ui/gl/vsync_provider.h" +#include "ui/gfx/vsync_provider.h" namespace content { |