| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef COMPONENTS_WEB_CACHE_RENDERER_WEB_CACHE_MEMORY_DUMP_PROVIDER_H |
| 6 #define COMPONENTS_WEB_CACHE_RENDERER_WEB_CACHE_MEMORY_DUMP_PROVIDER_H |
| 7 |
| 8 #include "base/memory/singleton.h" |
| 9 #include "base/trace_event/memory_dump_provider.h" |
| 10 |
| 11 namespace web_cache { |
| 12 |
| 13 class WebCacheMemoryDumpProvider |
| 14 : public base::trace_event::MemoryDumpProvider { |
| 15 public: |
| 16 static WebCacheMemoryDumpProvider* GetInstance(); |
| 17 |
| 18 bool OnMemoryDump(const base::trace_event::MemoryDumpArgs& args, |
| 19 base::trace_event::ProcessMemoryDump* pmd) override; |
| 20 |
| 21 private: |
| 22 friend struct DefaultSingletonTraits<WebCacheMemoryDumpProvider>; |
| 23 |
| 24 WebCacheMemoryDumpProvider(); |
| 25 ~WebCacheMemoryDumpProvider() override; |
| 26 |
| 27 DISALLOW_COPY_AND_ASSIGN(WebCacheMemoryDumpProvider); |
| 28 }; |
| 29 |
| 30 } // namespace web_cache |
| 31 |
| 32 #endif // COMPONENTS_WEB_CACHE_RENDERER_WEB_CACHE_MEMORY_DUMP_PROVIDER_H |
| OLD | NEW |