diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-17 22:16:13 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-17 22:16:13 +0000 |
commit | c50a693e365d8415e39363686771d4db0c24c317 (patch) | |
tree | 8b11bfe0427fb1d0067f5e9d48cd86bcb9b29c04 /cc | |
parent | bffef3c1e017c81d3dbffd7b26c27514be351096 (diff) | |
download | chromium_src-c50a693e365d8415e39363686771d4db0c24c317.zip chromium_src-c50a693e365d8415e39363686771d4db0c24c317.tar.gz chromium_src-c50a693e365d8415e39363686771d4db0c24c317.tar.bz2 |
Use a direct include of the message_loop header in cc/, chrome_frame/, cloud_print/, components.
BUG=260807
TEST=none
TBR=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/19403002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc')
-rw-r--r-- | cc/output/output_surface.cc | 2 | ||||
-rw-r--r-- | cc/output/renderer_pixeltest.cc | 2 | ||||
-rw-r--r-- | cc/resources/worker_pool.h | 2 | ||||
-rw-r--r-- | cc/test/cc_test_suite.cc | 2 | ||||
-rw-r--r-- | cc/test/fake_output_surface.cc | 2 | ||||
-rw-r--r-- | cc/test/run_all_unittests.cc | 2 | ||||
-rw-r--r-- | cc/test/test_web_graphics_context_3d.cc | 2 | ||||
-rw-r--r-- | cc/trees/layer_tree_host.cc | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/cc/output/output_surface.cc b/cc/output/output_surface.cc index 4847ef8..201f67c 100644 --- a/cc/output/output_surface.cc +++ b/cc/output/output_surface.cc @@ -11,7 +11,7 @@ #include "base/bind.h" #include "base/debug/trace_event.h" #include "base/logging.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/strings/string_split.h" #include "base/strings/string_util.h" #include "cc/output/compositor_frame.h" diff --git a/cc/output/renderer_pixeltest.cc b/cc/output/renderer_pixeltest.cc index 42f5be1..ff1d0651 100644 --- a/cc/output/renderer_pixeltest.cc +++ b/cc/output/renderer_pixeltest.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "cc/layers/append_quads_data.h" #include "cc/output/gl_renderer.h" #include "cc/quads/draw_quad.h" diff --git a/cc/resources/worker_pool.h b/cc/resources/worker_pool.h index 01fb6252..c26ed07 100644 --- a/cc/resources/worker_pool.h +++ b/cc/resources/worker_pool.h @@ -13,7 +13,7 @@ #include "base/memory/ref_counted.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "cc/base/cc_export.h" #include "cc/base/scoped_ptr_hash_map.h" diff --git a/cc/test/cc_test_suite.cc b/cc/test/cc_test_suite.cc index 2758c42..4fa6565 100644 --- a/cc/test/cc_test_suite.cc +++ b/cc/test/cc_test_suite.cc @@ -7,7 +7,7 @@ #include <string> #include "base/command_line.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/threading/thread_id_name_manager.h" #include "cc/base/switches.h" #include "cc/test/paths.h" diff --git a/cc/test/fake_output_surface.cc b/cc/test/fake_output_surface.cc index 195c603..6694b06 100644 --- a/cc/test/fake_output_surface.cc +++ b/cc/test/fake_output_surface.cc @@ -5,7 +5,7 @@ #include "cc/test/fake_output_surface.h" #include "base/bind.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "cc/output/compositor_frame_ack.h" #include "cc/output/output_surface_client.h" #include "testing/gtest/include/gtest/gtest.h" diff --git a/cc/test/run_all_unittests.cc b/cc/test/run_all_unittests.cc index b4ec092..0ac740e 100644 --- a/cc/test/run_all_unittests.cc +++ b/cc/test/run_all_unittests.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/test/test_suite.h" #include "cc/test/cc_test_suite.h" #include "testing/gmock/include/gmock/gmock.h" diff --git a/cc/test/test_web_graphics_context_3d.cc b/cc/test/test_web_graphics_context_3d.cc index c4f80a8..9e5488b 100644 --- a/cc/test/test_web_graphics_context_3d.cc +++ b/cc/test/test_web_graphics_context_3d.cc @@ -10,7 +10,7 @@ #include "base/bind.h" #include "base/lazy_instance.h" #include "base/logging.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "gpu/GLES2/gl2extchromium.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/khronos/GLES2/gl2ext.h" diff --git a/cc/trees/layer_tree_host.cc b/cc/trees/layer_tree_host.cc index a4ff570..25e8991 100644 --- a/cc/trees/layer_tree_host.cc +++ b/cc/trees/layer_tree_host.cc @@ -10,7 +10,7 @@ #include "base/bind.h" #include "base/command_line.h" #include "base/debug/trace_event.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/metrics/histogram.h" #include "base/stl_util.h" #include "base/strings/string_number_conversions.h" |