Index: ipc/ipc_channel_posix.cc |
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc |
index b5e23328f0e2efa04fee6edaa86edd68f7515b68..79febbffe03021f8f42fdd58310779ea11ed1235 100644 |
--- a/ipc/ipc_channel_posix.cc |
+++ b/ipc/ipc_channel_posix.cc |
@@ -94,9 +94,7 @@ namespace { |
class PipeMap { |
public: |
- static PipeMap* GetInstance() { |
- return Singleton<PipeMap>::get(); |
- } |
+ static PipeMap* GetInstance() { return base::Singleton<PipeMap>::get(); } |
~PipeMap() { |
// Shouldn't have left over pipes. |
@@ -138,7 +136,7 @@ class PipeMap { |
typedef std::map<std::string, int> ChannelToFDMap; |
ChannelToFDMap map_; |
- friend struct DefaultSingletonTraits<PipeMap>; |
+ friend struct base::DefaultSingletonTraits<PipeMap>; |
#if defined(OS_ANDROID) |
friend void ::IPC::Channel::NotifyProcessForkedForTesting(); |
#endif |