diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-20 21:27:01 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-20 21:27:01 +0000 |
commit | 1c603da3e2a494ceef58e540046c748a283ec019 (patch) | |
tree | 51d278036654d0f78c4f26e06809ccae7323d106 /cc | |
parent | 5c1c6521fd2bc6b8c8451c02c729c8c0360c4189 (diff) | |
download | chromium_src-1c603da3e2a494ceef58e540046c748a283ec019.zip chromium_src-1c603da3e2a494ceef58e540046c748a283ec019.tar.gz chromium_src-1c603da3e2a494ceef58e540046c748a283ec019.tar.bz2 |
Move ui/base/latency_info* to ui/events
Latest in a sequence of changes to extract ui/gfx as its own component and sever ties on ui/base from various should-be-lower-level components.
TBR=jamesr@chromium.org, sky@chromium.org
BUG=none
Review URL: https://codereview.chromium.org/23464099
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224496 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc')
-rw-r--r-- | cc/DEPS | 2 | ||||
-rw-r--r-- | cc/output/compositor_frame_metadata.h | 2 | ||||
-rw-r--r-- | cc/trees/layer_tree_host.h | 2 | ||||
-rw-r--r-- | cc/trees/layer_tree_impl.h | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -6,7 +6,7 @@ include_rules = [ "+third_party/skia/include", "+third_party/khronos/GLES2/gl2.h", "+third_party/khronos/GLES2/gl2ext.h", - "+ui/base", + "+ui/events/latency_info.h", "+ui/gfx", "+ui/gl", # DO NOT ADD ANY NEW WEBKIT HEADERS TO THIS LIST. diff --git a/cc/output/compositor_frame_metadata.h b/cc/output/compositor_frame_metadata.h index 4e569bb..c084151 100644 --- a/cc/output/compositor_frame_metadata.h +++ b/cc/output/compositor_frame_metadata.h @@ -6,7 +6,7 @@ #define CC_OUTPUT_COMPOSITOR_FRAME_METADATA_H_ #include "cc/base/cc_export.h" -#include "ui/base/latency_info.h" +#include "ui/events/latency_info.h" #include "ui/gfx/size_f.h" #include "ui/gfx/vector2d_f.h" diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h index e2e33d2..934f85e 100644 --- a/cc/trees/layer_tree_host.h +++ b/cc/trees/layer_tree_host.h @@ -35,7 +35,7 @@ #include "cc/trees/occlusion_tracker.h" #include "cc/trees/proxy.h" #include "third_party/skia/include/core/SkColor.h" -#include "ui/base/latency_info.h" +#include "ui/events/latency_info.h" #include "ui/gfx/rect.h" namespace WebKit { class WebGraphicsContext3D; } diff --git a/cc/trees/layer_tree_impl.h b/cc/trees/layer_tree_impl.h index 7c66759..eb6a015 100644 --- a/cc/trees/layer_tree_impl.h +++ b/cc/trees/layer_tree_impl.h @@ -13,7 +13,7 @@ #include "base/values.h" #include "cc/layers/layer_impl.h" #include "cc/resources/ui_resource_client.h" -#include "ui/base/latency_info.h" +#include "ui/events/latency_info.h" #if defined(COMPILER_GCC) namespace BASE_HASH_NAMESPACE { |