Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Unified Diff: third_party/WebKit/Source/platform/web_memory_dump_provider_adapter.cc

Issue 1660383002: Refactoring: Move some classes from content/child to platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add PLATFORM_EXPORT; Address haraken's review Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/web_memory_dump_provider_adapter.cc
diff --git a/content/child/web_memory_dump_provider_adapter.cc b/third_party/WebKit/Source/platform/web_memory_dump_provider_adapter.cc
similarity index 85%
rename from content/child/web_memory_dump_provider_adapter.cc
rename to third_party/WebKit/Source/platform/web_memory_dump_provider_adapter.cc
index 051f155fd98162695d6bbd7890139f435f47d5d2..0a57107adb6856a687c2b779352422dd5c3c2059 100644
--- a/content/child/web_memory_dump_provider_adapter.cc
+++ b/third_party/WebKit/Source/platform/web_memory_dump_provider_adapter.cc
@@ -2,15 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/child/web_memory_dump_provider_adapter.h"
+#include "platform/web_memory_dump_provider_adapter.h"
#include <stddef.h>
#include "base/trace_event/trace_event_argument.h"
-#include "content/child/web_process_memory_dump_impl.h"
-#include "third_party/WebKit/public/platform/WebMemoryDumpProvider.h"
+#include "platform/web_process_memory_dump_impl.h"
+#include "public/platform/WebMemoryDumpProvider.h"
-namespace content {
+namespace blink {
WebMemoryDumpProviderAdapter::WebMemoryDumpProviderAdapter(
blink::WebMemoryDumpProvider* wmdp)
@@ -46,4 +46,4 @@ void WebMemoryDumpProviderAdapter::OnHeapProfilingEnabled(bool enabled) {
web_memory_dump_provider_->onHeapProfilingEnabled(enabled);
}
-} // namespace content
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698