OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "base/message_loop/message_pump_io_ios.h" | 5 #include "base/message_loop/message_pump_io_ios.h" |
6 | 6 |
7 #include <unistd.h> | 7 #include <unistd.h> |
8 | 8 |
9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
10 #include "base/posix/eintr_wrapper.h" | 10 #include "base/posix/eintr_wrapper.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 75 |
76 // Test to make sure that we catch calling WatchFileDescriptor off of the | 76 // Test to make sure that we catch calling WatchFileDescriptor off of the |
77 // wrong thread. | 77 // wrong thread. |
78 TEST_F(MessagePumpIOSForIOTest, TestWatchingFromBadThread) { | 78 TEST_F(MessagePumpIOSForIOTest, TestWatchingFromBadThread) { |
79 MessagePumpIOSForIO::FileDescriptorWatcher watcher; | 79 MessagePumpIOSForIO::FileDescriptorWatcher watcher; |
80 StupidWatcher delegate; | 80 StupidWatcher delegate; |
81 | 81 |
82 ASSERT_DEBUG_DEATH(io_loop()->WatchFileDescriptor( | 82 ASSERT_DEBUG_DEATH(io_loop()->WatchFileDescriptor( |
83 STDOUT_FILENO, false, MessageLoopForIO::WATCH_READ, &watcher, &delegate), | 83 STDOUT_FILENO, false, MessageLoopForIO::WATCH_READ, &watcher, &delegate), |
84 "Check failed: " | 84 "Check failed: " |
85 "watch_file_descriptor_caller_checker_.CalledOnValidThread()"); | 85 "watch_file_descriptor_caller_checker_.CalledOnValidThread\\(\\)"); |
86 } | 86 } |
87 | 87 |
88 #endif // GTEST_HAS_DEATH_TEST && !defined(NDEBUG) | 88 #endif // GTEST_HAS_DEATH_TEST && !defined(NDEBUG) |
89 | 89 |
90 class BaseWatcher : public MessagePumpIOSForIO::Watcher { | 90 class BaseWatcher : public MessagePumpIOSForIO::Watcher { |
91 public: | 91 public: |
92 BaseWatcher(MessagePumpIOSForIO::FileDescriptorWatcher* controller) | 92 BaseWatcher(MessagePumpIOSForIO::FileDescriptorWatcher* controller) |
93 : controller_(controller) { | 93 : controller_(controller) { |
94 DCHECK(controller_); | 94 DCHECK(controller_); |
95 } | 95 } |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 pump->WatchFileDescriptor(pipefds_[1], | 179 pump->WatchFileDescriptor(pipefds_[1], |
180 false, MessagePumpIOSForIO::WATCH_READ_WRITE, &watcher, &delegate); | 180 false, MessagePumpIOSForIO::WATCH_READ_WRITE, &watcher, &delegate); |
181 | 181 |
182 // Spoof a callback. | 182 // Spoof a callback. |
183 HandleFdIOEvent(&watcher); | 183 HandleFdIOEvent(&watcher); |
184 } | 184 } |
185 | 185 |
186 } // namespace | 186 } // namespace |
187 | 187 |
188 } // namespace base | 188 } // namespace base |
OLD | NEW |