| Index: third_party/WebKit/Source/platform/WebProcessMemoryDumpImplTest.cpp
|
| diff --git a/content/child/web_process_memory_dump_impl_unittest.cc b/third_party/WebKit/Source/platform/WebProcessMemoryDumpImplTest.cpp
|
| similarity index 97%
|
| rename from content/child/web_process_memory_dump_impl_unittest.cc
|
| rename to third_party/WebKit/Source/platform/WebProcessMemoryDumpImplTest.cpp
|
| index 98860ff3af1aecc41a244a64a024c65183c4f949..4ab5426d07b7e775a3bd20792bc12613a6f83e35 100644
|
| --- a/content/child/web_process_memory_dump_impl_unittest.cc
|
| +++ b/third_party/WebKit/Source/platform/WebProcessMemoryDumpImplTest.cpp
|
| @@ -2,16 +2,17 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "content/child/web_process_memory_dump_impl.h"
|
| +#include "platform/WebProcessMemoryDumpImpl.h"
|
|
|
| #include "base/trace_event/memory_allocator_dump.h"
|
| #include "base/trace_event/process_memory_dump.h"
|
| #include "base/trace_event/trace_event_argument.h"
|
| #include "base/values.h"
|
| -#include "content/child/web_memory_allocator_dump_impl.h"
|
| +#include "platform/WebMemoryAllocatorDumpImpl.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "wtf/OwnPtr.h"
|
|
|
| -namespace content {
|
| +namespace blink {
|
|
|
| // Tests that the Chromium<>Blink plumbing that exposes the MemoryInfra classes
|
| // behaves correctly, performs the right transfers of memory ownerships and
|
| @@ -121,4 +122,4 @@ TEST(WebProcessMemoryDumpImplTest, IntegrationTest) {
|
| wpmd1.reset();
|
| }
|
|
|
| -} // namespace content
|
| +} // namespace blink
|
|
|