| Index: content/child/resource_dispatcher_unittest.cc
|
| diff --git a/content/child/resource_dispatcher_unittest.cc b/content/child/resource_dispatcher_unittest.cc
|
| index 320564fbb23ce752be90d143220d576833b73700..5db4085636cc80e50bd85734c803b95a965a9204 100644
|
| --- a/content/child/resource_dispatcher_unittest.cc
|
| +++ b/content/child/resource_dispatcher_unittest.cc
|
| @@ -307,7 +307,10 @@ class DeferredResourceLoadingTest : public ResourceDispatcherTest,
|
| virtual void SetUp() OVERRIDE {
|
| ResourceDispatcherTest::SetUp();
|
| shared_handle_.Delete(kShmemSegmentName);
|
| - EXPECT_TRUE(shared_handle_.CreateNamed(kShmemSegmentName, false, 100));
|
| + // TODO(viettrungluu): Named shared memory is deprecated (crbug.com/345734).
|
| + // (I don't think we even need it here.)
|
| + EXPECT_TRUE(shared_handle_.CreateNamedDeprecated(kShmemSegmentName, false,
|
| + 100));
|
| }
|
|
|
| virtual void TearDown() OVERRIDE {
|
|
|