Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: dbus/end_to_end_async_unittest.cc

Issue 1541193002: Switch to standard integer types in dbus/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « dbus/dbus_statistics_unittest.cc ('k') | dbus/exported_object.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stddef.h>
6
5 #include <algorithm> 7 #include <algorithm>
6 #include <string> 8 #include <string>
7 #include <vector> 9 #include <vector>
8 10
9 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
11 #include "base/message_loop/message_loop.h" 14 #include "base/message_loop/message_loop.h"
12 #include "base/run_loop.h" 15 #include "base/run_loop.h"
13 #include "base/stl_util.h" 16 #include "base/stl_util.h"
14 #include "base/test/test_timeouts.h" 17 #include "base/test/test_timeouts.h"
15 #include "base/threading/thread.h" 18 #include "base/threading/thread.h"
16 #include "base/threading/thread_restrictions.h" 19 #include "base/threading/thread_restrictions.h"
17 #include "dbus/bus.h" 20 #include "dbus/bus.h"
18 #include "dbus/message.h" 21 #include "dbus/message.h"
19 #include "dbus/object_path.h" 22 #include "dbus/object_path.h"
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 test_service_->SendTestSignal(kMessage); 658 test_service_->SendTestSignal(kMessage);
656 // Receive the signal with the object proxy. 659 // Receive the signal with the object proxy.
657 WaitForTestSignal(); 660 WaitForTestSignal();
658 // Verify the string WAS received by the original handler. 661 // Verify the string WAS received by the original handler.
659 ASSERT_EQ(kMessage, test_signal_string_); 662 ASSERT_EQ(kMessage, test_signal_string_);
660 // Verify the signal WAS ALSO received by the additional handler. 663 // Verify the signal WAS ALSO received by the additional handler.
661 ASSERT_EQ(kMessage, additional_test_signal_string_); 664 ASSERT_EQ(kMessage, additional_test_signal_string_);
662 } 665 }
663 666
664 } // namespace dbus 667 } // namespace dbus
OLDNEW
« no previous file with comments | « dbus/dbus_statistics_unittest.cc ('k') | dbus/exported_object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698