summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_sync_channel_unittest.cc
diff options
context:
space:
mode:
authorthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-02 12:32:07 +0000
committerthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-02 12:32:07 +0000
commit1d88c7f3d3b780274d7d594175271158150ca1e3 (patch)
treef353a677d2e210b4f7d51639c72af58012b7be24 /ipc/ipc_sync_channel_unittest.cc
parentdcfb5c0db3c898441e6d1e1f38781a488816a0e4 (diff)
downloadchromium_src-1d88c7f3d3b780274d7d594175271158150ca1e3.zip
chromium_src-1d88c7f3d3b780274d7d594175271158150ca1e3.tar.gz
chromium_src-1d88c7f3d3b780274d7d594175271158150ca1e3.tar.bz2
Revert 51520 - Up the warnings in ipc
add chromium_code:1 to the GYP file Fix some unittest compares of literal 0 to apis that return size_t initializer order match declared order type_id is a uint32, so fix up comparison warnings by using the right type in the test code. BUG=none TEST=everything still builds/works Review URL: http://codereview.chromium.org/2863034 TBR=thomasvl@google.com Review URL: http://codereview.chromium.org/2852042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51523 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_sync_channel_unittest.cc')
-rw-r--r--ipc/ipc_sync_channel_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_sync_channel_unittest.cc b/ipc/ipc_sync_channel_unittest.cc
index ae9ae66..2566f9b 100644
--- a/ipc/ipc_sync_channel_unittest.cc
+++ b/ipc/ipc_sync_channel_unittest.cc
@@ -727,8 +727,8 @@ class QueuedReplyClient : public Worker {
const std::string& expected_text,
bool pump_during_send)
: Worker(channel_name, Channel::MODE_CLIENT),
- pump_during_send_(pump_during_send),
- expected_text_(expected_text) {
+ expected_text_(expected_text),
+ pump_during_send_(pump_during_send) {
Worker::OverrideThread(listener_thread);
}