OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef BASE_TRACE_EVENT_GENERIC_SHARED_MEMORY_ID_H_ |
| 6 #define BASE_TRACE_EVENT_GENERIC_SHARED_MEMORY_ID_H_ |
| 7 |
| 8 #include "base/base_export.h" |
| 9 #include "base/trace_event/memory_allocator_dump.h" |
| 10 |
| 11 namespace base { |
| 12 |
| 13 namespace trace_event { |
| 14 |
| 15 using GenericSharedMemoryId = int; |
| 16 |
| 17 BASE_EXPORT base::trace_event::MemoryAllocatorDumpGuid |
| 18 GetGenericSharedMemoryGUIDForTracing( |
| 19 uint64_t tracing_process_id, |
| 20 GenericSharedMemoryId generic_shared_memory_id); |
| 21 |
| 22 } // namespace trace_event |
| 23 |
| 24 } // namespace base |
| 25 |
| 26 #endif // BASE_TRACE_EVENT_GENERIC_SHARED_MEMORY_ID_H_ |
OLD | NEW |