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

Unified Diff: mojo/spy/spy.h

Issue 379753002: Redo: Adding a mojo interface to the mojo spy (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: bindings clash fix Created 6 years, 5 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
« no previous file with comments | « mojo/spy/public/spy.mojom ('k') | mojo/spy/spy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/spy/spy.h
diff --git a/mojo/spy/spy.h b/mojo/spy/spy.h
index c3673f453f4b0388198a4d2bf595d3cff0c9a402..020167fd07212d7ff6a9da9a35812e3c20802a73 100644
--- a/mojo/spy/spy.h
+++ b/mojo/spy/spy.h
@@ -6,15 +6,17 @@
#define MOJO_SPY_SPY_H_
#include <string>
+#include "base/memory/ref_counted.h"
#include "base/memory/scoped_ptr.h"
namespace base {
- class Thread;
+class Thread;
}
namespace mojo {
class ServiceManager;
+class SpyServerImpl;
// mojo::Spy is a troubleshooting and debugging aid. It helps tracking
// the mojo system core activities like messages, service creation, etc.
@@ -31,8 +33,9 @@ class Spy {
~Spy();
private:
- // This thread runs the code that talks to the frontend.
- scoped_ptr<base::Thread> control_thread_;
+ scoped_refptr<SpyServerImpl> spy_server_;
+ // This thread runs the code that talks to the frontend.
+ scoped_ptr<base::Thread> control_thread_;
};
} // namespace mojo
« no previous file with comments | « mojo/spy/public/spy.mojom ('k') | mojo/spy/spy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698