Index: base/message_pump_glib_unittest.cc |
=================================================================== |
--- base/message_pump_glib_unittest.cc (revision 30973) |
+++ base/message_pump_glib_unittest.cc (working copy) |
@@ -330,6 +330,10 @@ |
int task_count() const { return task_count_; } |
private: |
+ friend class base::RefCounted<ConcurrentHelper>; |
+ |
+ ~ConcurrentHelper() {} |
+ |
static const int kStartingEventCount = 20; |
static const int kStartingTaskCount = 20; |
@@ -455,6 +459,10 @@ |
} |
private: |
+ friend class base::RefCounted<GLibLoopRunner>; |
+ |
+ ~GLibLoopRunner() {} |
+ |
bool quit_; |
}; |