diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 22:51:28 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 22:51:28 +0000 |
commit | e5157497585854be6297aae43040310211e5f3ef (patch) | |
tree | eac9fae1a9f0951df900580a23cf68665369e66e /ui/aura/bench | |
parent | 0acd332a7165dfb8f3c9d16d06592695a34b5ff8 (diff) | |
download | chromium_src-e5157497585854be6297aae43040310211e5f3ef.zip chromium_src-e5157497585854be6297aae43040310211e5f3ef.tar.gz chromium_src-e5157497585854be6297aae43040310211e5f3ef.tar.bz2 |
Move message_pump to base/message_loop.
This also fixes some namespace usage inside the message pump files and updates all users of these files to use the new location.
BUG=
R=sky@chromium.org
Review URL: https://codereview.chromium.org/17078005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206507 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/bench')
-rw-r--r-- | ui/aura/bench/bench_main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/aura/bench/bench_main.cc b/ui/aura/bench/bench_main.cc index bcdbd61..7ddbc9e 100644 --- a/ui/aura/bench/bench_main.cc +++ b/ui/aura/bench/bench_main.cc @@ -7,7 +7,7 @@ #include "base/command_line.h" #include "base/i18n/icu_util.h" #include "base/memory/scoped_ptr.h" -#include "base/message_loop.h" +#include "base/message_loop/message_loop.h" #include "base/strings/string_split.h" #include "base/time.h" #include "third_party/khronos/GLES2/gl2.h" @@ -35,7 +35,7 @@ #include "third_party/khronos/GLES2/gl2ext.h" #if defined(USE_X11) -#include "base/message_pump_aurax11.h" +#include "base/message_loop/message_pump_aurax11.h" #endif using base::TimeTicks; |