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

Side by Side Diff: components/web_cache/renderer/web_cache_memory_dump_provider.h

Issue 1283793004: [tracing] Add WebCache memory usage in Blink to chrome://tracing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unregister. Created 5 years, 4 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 unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698