| Index: chrome/browser/extensions/api/socket/udp_socket.cc
|
| diff --git a/chrome/browser/extensions/api/socket/udp_socket.cc b/chrome/browser/extensions/api/socket/udp_socket.cc
|
| index 8580544a821fa41b7410b4eca971c5473126d02b..ed1e2b9c01dfc5123990b66741340202ba1d8d57 100644
|
| --- a/chrome/browser/extensions/api/socket/udp_socket.cc
|
| +++ b/chrome/browser/extensions/api/socket/udp_socket.cc
|
| @@ -14,13 +14,13 @@
|
|
|
| namespace extensions {
|
|
|
| -static base::LazyInstance<ProfileKeyedAPIFactory<
|
| - ApiResourceManager<ResumableUDPSocket> > >
|
| - g_factory = LAZY_INSTANCE_INITIALIZER;
|
| +static base::LazyInstance<
|
| + BrowserContextKeyedAPIFactory<ApiResourceManager<ResumableUDPSocket> > >
|
| + g_factory = LAZY_INSTANCE_INITIALIZER;
|
|
|
| // static
|
| template <>
|
| -ProfileKeyedAPIFactory<ApiResourceManager<ResumableUDPSocket> >*
|
| +BrowserContextKeyedAPIFactory<ApiResourceManager<ResumableUDPSocket> >*
|
| ApiResourceManager<ResumableUDPSocket>::GetFactoryInstance() {
|
| return g_factory.Pointer();
|
| }
|
|
|