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 /cc | |
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 'cc')
-rw-r--r-- | cc/output/software_output_device.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/output/software_output_device.cc b/cc/output/software_output_device.cc index 2c09944..17ef63f 100644 --- a/cc/output/software_output_device.cc +++ b/cc/output/software_output_device.cc @@ -9,7 +9,7 @@ #include "third_party/skia/include/core/SkBitmapDevice.h" #include "third_party/skia/include/core/SkCanvas.h" #include "ui/gfx/skia_util.h" -#include "ui/gl/vsync_provider.h" +#include "ui/gfx/vsync_provider.h" namespace cc { |