OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 #include "base/thread_task_runner_handle.h" | 31 #include "base/thread_task_runner_handle.h" |
32 #include "base/trace_event/memory_dump_manager.h" | 32 #include "base/trace_event/memory_dump_manager.h" |
33 #include "platform/Histogram.h" | 33 #include "platform/Histogram.h" |
34 #include "platform/PartitionAllocMemoryDumpProvider.h" | 34 #include "platform/PartitionAllocMemoryDumpProvider.h" |
35 #include "platform/fonts/FontCacheMemoryDumpProvider.h" | 35 #include "platform/fonts/FontCacheMemoryDumpProvider.h" |
36 #include "platform/graphics/CompositorFactory.h" | 36 #include "platform/graphics/CompositorFactory.h" |
37 #include "platform/heap/GCTaskRunner.h" | 37 #include "platform/heap/GCTaskRunner.h" |
38 #include "platform/web_memory_dump_provider_adapter.h" | 38 #include "platform/web_memory_dump_provider_adapter.h" |
39 #include "public/platform/Platform.h" | 39 #include "public/platform/Platform.h" |
| 40 #include "public/platform/ServiceRegistry.h" |
40 #include "public/platform/WebPrerenderingSupport.h" | 41 #include "public/platform/WebPrerenderingSupport.h" |
41 #include "wtf/HashMap.h" | 42 #include "wtf/HashMap.h" |
42 #include "wtf/OwnPtr.h" | 43 #include "wtf/OwnPtr.h" |
43 | 44 |
44 namespace blink { | 45 namespace blink { |
| 46 namespace { |
| 47 |
| 48 class EmptyServiceRegistry : public ServiceRegistry { |
| 49 void connectToRemoteService(const char* name, mojo::ScopedMessagePipeHandle)
override {} |
| 50 }; |
| 51 |
| 52 } |
45 | 53 |
46 static Platform* s_platform = nullptr; | 54 static Platform* s_platform = nullptr; |
47 using ProviderToAdapterMap = HashMap<WebMemoryDumpProvider*, OwnPtr<WebMemoryDum
pProviderAdapter>>; | 55 using ProviderToAdapterMap = HashMap<WebMemoryDumpProvider*, OwnPtr<WebMemoryDum
pProviderAdapter>>; |
48 | 56 |
49 static GCTaskRunner* s_gcTaskRunner = nullptr; | 57 static GCTaskRunner* s_gcTaskRunner = nullptr; |
50 | 58 |
51 namespace { | 59 namespace { |
52 | 60 |
53 ProviderToAdapterMap& memoryDumpProviders() | 61 ProviderToAdapterMap& memoryDumpProviders() |
54 { | 62 { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 178 |
171 ProviderToAdapterMap::iterator it = memoryDumpProviders().find(provider); | 179 ProviderToAdapterMap::iterator it = memoryDumpProviders().find(provider); |
172 if (it == memoryDumpProviders().end()) | 180 if (it == memoryDumpProviders().end()) |
173 return; | 181 return; |
174 WebMemoryDumpProviderAdapter* adapter = it->value.get(); | 182 WebMemoryDumpProviderAdapter* adapter = it->value.get(); |
175 base::trace_event::MemoryDumpManager::GetInstance()->UnregisterDumpProvider(
adapter); | 183 base::trace_event::MemoryDumpManager::GetInstance()->UnregisterDumpProvider(
adapter); |
176 adapter->set_is_registered(false); | 184 adapter->set_is_registered(false); |
177 memoryDumpProviders().remove(it); | 185 memoryDumpProviders().remove(it); |
178 } | 186 } |
179 | 187 |
| 188 ServiceRegistry* Platform::serviceRegistry() |
| 189 { |
| 190 DEFINE_STATIC_LOCAL(EmptyServiceRegistry, emptyServiceRegistry, ()); |
| 191 return &emptyServiceRegistry; |
| 192 } |
| 193 |
180 } // namespace blink | 194 } // namespace blink |
OLD | NEW |