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

Side by Side Diff: sql/connection_memory_dump_provider.h

Issue 2452713003: [Sync] Implement MemoryDumpProvider. (Closed)
Patch Set: Fix presumit; fix Windows; git cl format Created 4 years 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
« no previous file with comments | « sql/connection.cc ('k') | sql/connection_memory_dump_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SQL_CONNECTION_MEMORY_DUMP_PROVIDER_H 5 #ifndef SQL_CONNECTION_MEMORY_DUMP_PROVIDER_H
6 #define SQL_CONNECTION_MEMORY_DUMP_PROVIDER_H 6 #define SQL_CONNECTION_MEMORY_DUMP_PROVIDER_H
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/synchronization/lock.h" 11 #include "base/synchronization/lock.h"
12 #include "base/trace_event/memory_allocator_dump.h"
12 #include "base/trace_event/memory_dump_provider.h" 13 #include "base/trace_event/memory_dump_provider.h"
13 14
14 struct sqlite3; 15 struct sqlite3;
15 16
16 namespace sql { 17 namespace sql {
17 18
18 class ConnectionMemoryDumpProvider 19 class ConnectionMemoryDumpProvider
19 : public base::trace_event::MemoryDumpProvider { 20 : public base::trace_event::MemoryDumpProvider {
20 public: 21 public:
21 ConnectionMemoryDumpProvider(sqlite3* db, const std::string& name); 22 ConnectionMemoryDumpProvider(sqlite3* db, const std::string& name);
22 ~ConnectionMemoryDumpProvider() override; 23 ~ConnectionMemoryDumpProvider() override;
23 24
24 void ResetDatabase(); 25 void ResetDatabase();
25 26
26 // base::trace_event::MemoryDumpProvider implementation. 27 // base::trace_event::MemoryDumpProvider implementation.
27 bool OnMemoryDump( 28 bool OnMemoryDump(
28 const base::trace_event::MemoryDumpArgs& args, 29 const base::trace_event::MemoryDumpArgs& args,
29 base::trace_event::ProcessMemoryDump* process_memory_dump) override; 30 base::trace_event::ProcessMemoryDump* process_memory_dump) override;
30 31
32 // Reports memory usage into provided memory dump.
33 // Called by sql::Connection when its owner asks it to report memory usage.
34 bool ReportMemoryUsage(base::trace_event::MemoryAllocatorDump* mad);
35
31 private: 36 private:
37 bool GetDbMemoryUsage(int* cache_size,
38 int* schema_size,
39 int* statement_size);
40
41 std::string FormatDumpName() const;
42
32 sqlite3* db_; // not owned. 43 sqlite3* db_; // not owned.
33 base::Lock lock_; 44 base::Lock lock_;
34 std::string connection_name_; 45 std::string connection_name_;
35 46
36 DISALLOW_COPY_AND_ASSIGN(ConnectionMemoryDumpProvider); 47 DISALLOW_COPY_AND_ASSIGN(ConnectionMemoryDumpProvider);
37 }; 48 };
38 49
39 } // namespace sql 50 } // namespace sql
40 51
41 #endif // SQL_CONNECTION_MEMORY_DUMP_PROVIDER_H 52 #endif // SQL_CONNECTION_MEMORY_DUMP_PROVIDER_H
OLDNEW
« no previous file with comments | « sql/connection.cc ('k') | sql/connection_memory_dump_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698