Index: base/mp/message_router.h |
=================================================================== |
--- base/mp/message_router.h (revision 0) |
+++ base/mp/message_router.h (working copy) |
@@ -1,13 +1,15 @@ |
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CHROME_COMMON_MESSAGE_ROUTER_H__ |
-#define CHROME_COMMON_MESSAGE_ROUTER_H__ |
+#ifndef BASE_MP_MESSAGE_ROUTER_H__ |
+#define BASE_MP_MESSAGE_ROUTER_H__ |
#include "base/id_map.h" |
#include "ipc/ipc_channel.h" |
+namespace base { |
+ |
// The MessageRouter handles all incoming messages sent to it by routing them |
// to the correct listener. Routing is based on the Message's routing ID. |
// Since routing IDs are typically assigned asynchronously by the browser |
@@ -59,4 +61,6 @@ |
DISALLOW_COPY_AND_ASSIGN(MessageRouter); |
}; |
-#endif // CHROME_COMMON_MESSAGE_ROUTER_H__ |
+} // namespace base |
+ |
+#endif // BASE_MP_MESSAGE_ROUTER_H__ |