Index: sandbox/mac/mach_message_server.cc |
diff --git a/sandbox/mac/mach_message_server.cc b/sandbox/mac/mach_message_server.cc |
index 5a733577f310c4ba9f8edbce7a1761d2ce572107..7cfcecc6cc2ea4d1e4a358632d38f9e5d4ea84b5 100644 |
--- a/sandbox/mac/mach_message_server.cc |
+++ b/sandbox/mac/mach_message_server.cc |
@@ -12,7 +12,6 @@ |
#include "base/logging.h" |
#include "base/mac/mach_logging.h" |
#include "base/strings/stringprintf.h" |
-#include "sandbox/mac/dispatch_source_mach.h" |
namespace sandbox { |
@@ -69,7 +68,7 @@ bool MachMessageServer::Initialize() { |
// Set up the dispatch queue to service the bootstrap port. |
std::string label = base::StringPrintf( |
"org.chromium.sandbox.MachMessageServer.%p", demuxer_); |
- dispatch_source_.reset(new DispatchSourceMach( |
+ dispatch_source_.reset(new base::DispatchSourceMach( |
label.c_str(), server_port_.get(), ^{ ReceiveMessage(); })); |
dispatch_source_->Resume(); |