| 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 22 matching lines...) Expand all Loading... |
| 33 #include "platform/Histogram.h" | 33 #include "platform/Histogram.h" |
| 34 #include "platform/MemoryCacheDumpProvider.h" | 34 #include "platform/MemoryCacheDumpProvider.h" |
| 35 #include "platform/PartitionAllocMemoryDumpProvider.h" | 35 #include "platform/PartitionAllocMemoryDumpProvider.h" |
| 36 #include "platform/fonts/FontCacheMemoryDumpProvider.h" | 36 #include "platform/fonts/FontCacheMemoryDumpProvider.h" |
| 37 #include "platform/heap/BlinkGCMemoryDumpProvider.h" | 37 #include "platform/heap/BlinkGCMemoryDumpProvider.h" |
| 38 #include "platform/heap/GCTaskRunner.h" | 38 #include "platform/heap/GCTaskRunner.h" |
| 39 #include "public/platform/Platform.h" | 39 #include "public/platform/Platform.h" |
| 40 #include "public/platform/ServiceRegistry.h" | 40 #include "public/platform/ServiceRegistry.h" |
| 41 #include "public/platform/WebPrerenderingSupport.h" | 41 #include "public/platform/WebPrerenderingSupport.h" |
| 42 #include "wtf/HashMap.h" | 42 #include "wtf/HashMap.h" |
| 43 #include "wtf/OwnPtr.h" | |
| 44 | 43 |
| 45 namespace blink { | 44 namespace blink { |
| 46 | 45 |
| 47 static Platform* s_platform = nullptr; | 46 static Platform* s_platform = nullptr; |
| 48 | 47 |
| 49 static GCTaskRunner* s_gcTaskRunner = nullptr; | 48 static GCTaskRunner* s_gcTaskRunner = nullptr; |
| 50 | 49 |
| 51 Platform::Platform() | 50 Platform::Platform() |
| 52 : m_mainThread(0) | 51 : m_mainThread(0) |
| 53 { | 52 { |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 { | 138 { |
| 140 return m_mainThread; | 139 return m_mainThread; |
| 141 } | 140 } |
| 142 | 141 |
| 143 ServiceRegistry* Platform::serviceRegistry() | 142 ServiceRegistry* Platform::serviceRegistry() |
| 144 { | 143 { |
| 145 return ServiceRegistry::getEmptyServiceRegistry(); | 144 return ServiceRegistry::getEmptyServiceRegistry(); |
| 146 } | 145 } |
| 147 | 146 |
| 148 } // namespace blink | 147 } // namespace blink |
| OLD | NEW |