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

Unified Diff: chrome/profiling/profiling_globals.cc

Issue 2943733002: Add out-of-process memory logging stream parsing. (Closed)
Patch Set: Remove version Created 3 years, 6 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: chrome/profiling/profiling_globals.cc
diff --git a/chrome/profiling/profiling_globals.cc b/chrome/profiling/profiling_globals.cc
index 5cd552e70aa231527188a8dd2af5c38fb6a79017..0e03b5fad24681652f2fff5548b9499b13e5329a 100644
--- a/chrome/profiling/profiling_globals.cc
+++ b/chrome/profiling/profiling_globals.cc
@@ -32,6 +32,14 @@ base::TaskRunner* ProfilingGlobals::GetIORunner() {
return io_thread_.task_runner().get();
}
+MemlogConnectionManager* ProfilingGlobals::GetMemlogConnectionManager() {
+ return &memlog_connection_manager_;
+}
+
+StackStorage* ProfilingGlobals::GetStackStorage() {
+ return &stack_storage_;
+}
+
scoped_refptr<base::SingleThreadTaskRunner> ProfilingGlobals::GetMainThread()
const {
CHECK(base::MessageLoop::current() == main_message_loop_);

Powered by Google App Engine
This is Rietveld 408576698