Chromium Code Reviews| 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 784aa7eb0fb74ccdaaffcba5f33e85c7d258468d..92d33fc1c55ba8ee9686e9fa0aca11095d3341f9 100644 |
| --- a/third_party/WebKit/public/platform/Platform.h |
| +++ b/third_party/WebKit/public/platform/Platform.h |
| @@ -458,10 +458,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. |
| - virtual void registerMemoryDumpProvider(blink::WebMemoryDumpProvider*, const char* name) { } |
| + BLINK_PLATFORM_EXPORT void registerMemoryDumpProvider(blink::WebMemoryDumpProvider*, const char* name); |
|
kinuko
2016/02/04 13:15:54
If these are not called outside blink I don't thin
hajimehoshi
2016/02/05 07:41:54
Done.
hajimehoshi
2016/02/05 07:41:54
I've just now found that TestBlinkWebUnitTestSuppo
|
| // Must be called on the thread that called registerMemoryDumpProvider(). |
| - virtual void unregisterMemoryDumpProvider(blink::WebMemoryDumpProvider*) { } |
| + BLINK_PLATFORM_EXPORT void unregisterMemoryDumpProvider(blink::WebMemoryDumpProvider*); |
| class TraceLogEnabledStateObserver { |
| public: |
| @@ -474,9 +474,6 @@ 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 |