summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-15 20:05:17 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-15 20:05:17 +0000
commit14062daf1912d1fe2eca5bb67e644b840d75710d (patch)
tree7f0a066002be11a4ae0a38c09f8abeece62e4cb2 /ipc
parentd72afea57cbdb9045ae75c925b98d46074fb1a89 (diff)
downloadchromium_src-14062daf1912d1fe2eca5bb67e644b840d75710d.zip
chromium_src-14062daf1912d1fe2eca5bb67e644b840d75710d.tar.gz
chromium_src-14062daf1912d1fe2eca5bb67e644b840d75710d.tar.bz2
ipc: Wrap unit test into IPC namespace.
So we can remove the 'using namespace' directive. BUG=82078 TBR=darin@chromium.org Review URL: https://chromiumcodereview.appspot.com/12286003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182802 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r--ipc/ipc_message_utils_unittest.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/ipc/ipc_message_utils_unittest.cc b/ipc/ipc_message_utils_unittest.cc
index 47e4a60..24cddc7 100644
--- a/ipc/ipc_message_utils_unittest.cc
+++ b/ipc/ipc_message_utils_unittest.cc
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "ipc/ipc_message_utils.h"
+
#include "base/file_path.h"
#include "ipc/ipc_message.h"
-#include "ipc/ipc_message_utils.h"
#include "testing/gtest/include/gtest/gtest.h"
-using namespace IPC;
-
+namespace IPC {
namespace {
// Tests nesting of messages as parameters to other messages.
@@ -71,3 +71,4 @@ TEST(IPCMessageUtilsTest, ParameterValidation) {
}
} // namespace
+} // namespace IPC