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

Unified Diff: chrome/browser/nacl_host/nacl_process_host.h

Issue 10383262: RefCounted types should not have public destructors, delegate cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/browser/nacl_host/nacl_process_host.h
diff --git a/chrome/browser/nacl_host/nacl_process_host.h b/chrome/browser/nacl_host/nacl_process_host.h
index 412377ce01269ccca416629200efd0fa8c25c87d..255e3d8052715062fbdd9fc7835efd63ebd44de4 100644
--- a/chrome/browser/nacl_host/nacl_process_host.h
+++ b/chrome/browser/nacl_host/nacl_process_host.h
@@ -122,7 +122,9 @@ class NaClProcessHost : public content::BrowserChildProcessHostDelegate {
#elif defined(OS_LINUX)
bool wait_for_nacl_gdb_;
MessageLoopForIO::FileDescriptorWatcher nacl_gdb_watcher_;
- scoped_ptr<MessageLoopForIO::Watcher> nacl_gdb_watcher_delegate_;
+
+ class NaClGdbWatchDelegate;
+ scoped_ptr<NaClGdbWatchDelegate> nacl_gdb_watcher_delegate_;
#endif
// The ChromeRenderMessageFilter that requested this NaCl process. We use
// this for sending the reply once the process has started.

Powered by Google App Engine
This is Rietveld 408576698