diff options
author | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-29 21:02:14 +0000 |
---|---|---|
committer | sievers@chromium.org <sievers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-29 21:02:14 +0000 |
commit | 8b10b336067fe897c823b8d87aaf44a60247d4b3 (patch) | |
tree | f1c2898501d217d44401b5767694d5ba3c9acab4 /content/common | |
parent | 2e61845cacd06e94eebd0b4da5bfc17339d96f75 (diff) | |
download | chromium_src-8b10b336067fe897c823b8d87aaf44a60247d4b3.zip chromium_src-8b10b336067fe897c823b8d87aaf44a60247d4b3.tar.gz chromium_src-8b10b336067fe897c823b8d87aaf44a60247d4b3.tar.bz2 |
Fix sending browser messages from compositor thread.
Use the sync message filter on the impl thread instead.
http://codereview.chromium.org/9465009 added a DCHECK() for
thread-safety.
BUG=116183
Review URL: https://chromiumcodereview.appspot.com/9510003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124247 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/gpu/client/command_buffer_proxy.cc | 1 | ||||
-rw-r--r-- | content/common/gpu/client/gpu_channel_host.cc | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/content/common/gpu/client/command_buffer_proxy.cc b/content/common/gpu/client/command_buffer_proxy.cc index f195c8f..ab578a8 100644 --- a/content/common/gpu/client/command_buffer_proxy.cc +++ b/content/common/gpu/client/command_buffer_proxy.cc @@ -11,7 +11,6 @@ #include "base/shared_memory.h" #include "base/stl_util.h" #include "content/common/child_process_messages.h" -#include "content/common/child_thread.h" #include "content/common/gpu/gpu_memory_allocation.h" #include "content/common/gpu/client/gpu_channel_host.h" #include "content/common/gpu/gpu_messages.h" diff --git a/content/common/gpu/client/gpu_channel_host.cc b/content/common/gpu/client/gpu_channel_host.cc index 19e1500..cd932ae 100644 --- a/content/common/gpu/client/gpu_channel_host.cc +++ b/content/common/gpu/client/gpu_channel_host.cc @@ -7,7 +7,6 @@ #include "base/bind.h" #include "base/message_loop.h" #include "base/message_loop_proxy.h" -#include "content/common/child_thread.h" #include "content/common/gpu/client/command_buffer_proxy.h" #include "content/common/gpu/gpu_messages.h" #include "googleurl/src/gurl.h" |