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

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

Issue 1739113002: Revert of Refactoring: Move some classes from content/child to platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix patch failure 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.h
diff --git a/third_party/WebKit/Source/platform/web_memory_dump_provider_adapter.h b/third_party/WebKit/Source/platform/web_memory_dump_provider_adapter.h
deleted file mode 100644
index 6cb0d3c0e551f5b1546aff78d956cbab22aa8967..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/web_memory_dump_provider_adapter.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2015 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.
-
-#ifndef WebMemoryDumpProviderAdapter_h
-#define WebMemoryDumpProviderAdapter_h
-
-#include "base/macros.h"
-#include "base/trace_event/memory_dump_provider.h"
-
-namespace blink {
-
-class WebMemoryDumpProvider;
-
-// Adapter class which makes it possible to register a WebMemoryDumpProvider (
-// from blink) to base::trace_event::MemoryDumpManager, which expects a
-// MemoryDumpProvider instead.
-// This is essentially proxying the OnMemoryDump from chromium base to blink.
-class WebMemoryDumpProviderAdapter
- : public base::trace_event::MemoryDumpProvider {
- public:
- explicit WebMemoryDumpProviderAdapter(blink::WebMemoryDumpProvider* wmdp);
- ~WebMemoryDumpProviderAdapter() override;
-
- // base::trace_event::MemoryDumpProvider implementation.
- bool OnMemoryDump(const base::trace_event::MemoryDumpArgs& args,
- base::trace_event::ProcessMemoryDump* pmd) override;
-
- void OnHeapProfilingEnabled(bool enabled) override;
-
- bool is_registered() const { return is_registered_; }
- void set_is_registered(bool is_registered) { is_registered_ = is_registered; }
-
- private:
- // The underlying WebMemoryDumpProvider instance to which the OnMemoryDump()
- // calls will be proxied to.
- blink::WebMemoryDumpProvider* web_memory_dump_provider_; // Not owned.
-
- // True iff this has been registered with the MDM (and not unregistered yet).
- bool is_registered_;
-
- DISALLOW_COPY_AND_ASSIGN(WebMemoryDumpProviderAdapter);
-};
-
-} // namespace blink
-
-#endif // WebMemoryDumpProviderAdapter_h

Powered by Google App Engine
This is Rietveld 408576698