| 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/threading/thread_task_runner_handle.h" | 31 #include "base/threading/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/MemoryCoordinator.h" | 34 #include "platform/MemoryCoordinator.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 "platform/instrumentation/tracing/MemoryCacheDumpProvider.h" | 39 #include "platform/instrumentation/tracing/MemoryCacheDumpProvider.h" |
| 40 #include "public/platform/Connector.h" |
| 40 #include "public/platform/InterfaceProvider.h" | 41 #include "public/platform/InterfaceProvider.h" |
| 41 #include "public/platform/Platform.h" | 42 #include "public/platform/Platform.h" |
| 42 #include "public/platform/WebPrerenderingSupport.h" | 43 #include "public/platform/WebPrerenderingSupport.h" |
| 43 #include "wtf/HashMap.h" | 44 #include "wtf/HashMap.h" |
| 44 | 45 |
| 45 namespace blink { | 46 namespace blink { |
| 46 | 47 |
| 47 static Platform* s_platform = nullptr; | 48 static Platform* s_platform = nullptr; |
| 48 | 49 |
| 49 static GCTaskRunner* s_gcTaskRunner = nullptr; | 50 static GCTaskRunner* s_gcTaskRunner = nullptr; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 } | 141 } |
| 141 | 142 |
| 142 Platform* Platform::current() { | 143 Platform* Platform::current() { |
| 143 return s_platform; | 144 return s_platform; |
| 144 } | 145 } |
| 145 | 146 |
| 146 WebThread* Platform::mainThread() const { | 147 WebThread* Platform::mainThread() const { |
| 147 return m_mainThread; | 148 return m_mainThread; |
| 148 } | 149 } |
| 149 | 150 |
| 151 Connector* Platform::connector() { |
| 152 return Connector::getEmptyConnector(); |
| 153 } |
| 154 |
| 150 InterfaceProvider* Platform::interfaceProvider() { | 155 InterfaceProvider* Platform::interfaceProvider() { |
| 151 return InterfaceProvider::getEmptyInterfaceProvider(); | 156 return InterfaceProvider::getEmptyInterfaceProvider(); |
| 152 } | 157 } |
| 153 | 158 |
| 154 void Platform::bindServiceConnector( | |
| 155 mojo::ScopedMessagePipeHandle remoteHandle) {} | |
| 156 | |
| 157 } // namespace blink | 159 } // namespace blink |
| OLD | NEW |