| Index: base/file_descriptor_shuffle_unittest.cc
|
| diff --git a/base/file_descriptor_shuffle_unittest.cc b/base/file_descriptor_shuffle_unittest.cc
|
| index a4a703a8eb18f34e6eaa9bd759bcac9c398e084e..9b3f9597c649caf09cbe0b7963ec6cc9185c995d 100644
|
| --- a/base/file_descriptor_shuffle_unittest.cc
|
| +++ b/base/file_descriptor_shuffle_unittest.cc
|
| @@ -1,21 +1,18 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 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.
|
|
|
| #include "base/file_descriptor_shuffle.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -using base::InjectiveMultimap;
|
| -using base::InjectionArc;
|
| -using base::PerformInjectiveMultimap;
|
| -using base::InjectionDelegate;
|
| -
|
| namespace {
|
| -typedef testing::Test FileDescriptorShuffleTest;
|
| -}
|
|
|
| // 'Duplicated' file descriptors start at this number
|
| -static const int kDuplicateBase = 1000;
|
| +const int kDuplicateBase = 1000;
|
| +
|
| +} // namespace
|
| +
|
| +namespace base {
|
|
|
| struct Action {
|
| enum Type {
|
| @@ -287,3 +284,5 @@ TEST(FileDescriptorShuffleTest, Simple1WithFailure) {
|
|
|
| EXPECT_FALSE(PerformInjectiveMultimap(map, &failing));
|
| }
|
| +
|
| +} // namespace base
|
|
|