diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_logging.cc | 4 | ||||
-rw-r--r-- | ipc/ipc_sync_channel_unittest.cc | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/ipc/ipc_logging.cc b/ipc/ipc_logging.cc index e1684d7..9d4f4bb 100644 --- a/ipc/ipc_logging.cc +++ b/ipc/ipc_logging.cc @@ -36,8 +36,8 @@ using base::Time; // special retention program. template <> struct RunnableMethodTraits<IPC::Logging> { - void RetainCallee(IPC::Logging*) {} - void ReleaseCallee(IPC::Logging*) {} + static void RetainCallee(IPC::Logging*) {} + static void ReleaseCallee(IPC::Logging*) {} }; namespace IPC { diff --git a/ipc/ipc_sync_channel_unittest.cc b/ipc/ipc_sync_channel_unittest.cc index f6bf10e..f20f788 100644 --- a/ipc/ipc_sync_channel_unittest.cc +++ b/ipc/ipc_sync_channel_unittest.cc @@ -66,7 +66,6 @@ class Worker : public Channel::Listener, public Message::Sender { } void AddRef() { } void Release() { } - static bool ImplementsThreadSafeReferenceCounting() { return true; } bool Send(Message* msg) { return channel_->Send(msg); } bool SendWithTimeout(Message* msg, int timeout_ms) { return channel_->SendWithTimeout(msg, timeout_ms); |