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

Unified Diff: third_party/WebKit/public/platform/Platform.h

Issue 1741673002: Revert of Refactoring: Move some classes from content/child to platform (patchset #17 id:320001 of … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/public/platform/Platform.h
diff --git a/third_party/WebKit/public/platform/Platform.h b/third_party/WebKit/public/platform/Platform.h
index 72a3e189e3049825a6a3621c558bfaab13f5455d..a706079bce4738ef2c57b5a8b4a50fb97ffa0e99 100644
--- a/third_party/WebKit/public/platform/Platform.h
+++ b/third_party/WebKit/public/platform/Platform.h
@@ -424,10 +424,10 @@ public:
// registerMemoryDumpProvider() method. |name| is used for debugging
// (duplicates are allowed) and must be a long-lived C string.
// See crbug.com/458295 for design docs.
- BLINK_PLATFORM_EXPORT virtual void registerMemoryDumpProvider(blink::WebMemoryDumpProvider*, const char* name);
+ virtual void registerMemoryDumpProvider(blink::WebMemoryDumpProvider*, const char* name) { }
// Must be called on the thread that called registerMemoryDumpProvider().
- BLINK_PLATFORM_EXPORT virtual void unregisterMemoryDumpProvider(blink::WebMemoryDumpProvider*);
+ virtual void unregisterMemoryDumpProvider(blink::WebMemoryDumpProvider*) { }
class TraceLogEnabledStateObserver {
public:
@@ -440,6 +440,9 @@ public:
virtual void addTraceLogEnabledStateObserver(TraceLogEnabledStateObserver*) {}
virtual void removeTraceLogEnabledStateObserver(TraceLogEnabledStateObserver*) {}
+ // Returns a newly allocated WebProcessMemoryDump instance.
+ virtual blink::WebProcessMemoryDump* createProcessMemoryDump() { return nullptr; }
+
typedef uint64_t WebMemoryAllocatorDumpGuid;
// Returns guid corresponding to the given string (the hash value) for

Powered by Google App Engine
This is Rietveld 408576698