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

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: Make win bot happy Created 8 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
« no previous file with comments | « chrome/browser/history/history.h ('k') | chrome/browser/nacl_host/nacl_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3a2d5fbab342d6dc9c0b562c90b8bf019af02146..7c9945ed3e23097eab1f7a44c07a95741e9824c0 100644
--- a/chrome/browser/nacl_host/nacl_process_host.h
+++ b/chrome/browser/nacl_host/nacl_process_host.h
@@ -125,7 +125,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.
« no previous file with comments | « chrome/browser/history/history.h ('k') | chrome/browser/nacl_host/nacl_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698