| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 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 SERVICES_UI_COMMON_GENERIC_SHARED_MEMORY_ID_GENERATOR_H_ | |
| 6 #define SERVICES_UI_COMMON_GENERIC_SHARED_MEMORY_ID_GENERATOR_H_ | |
| 7 | |
| 8 #include "ui/gfx/generic_shared_memory_id.h" | |
| 9 | |
| 10 namespace ui { | |
| 11 | |
| 12 // Returns the next GenericSharedMemoryId for the current process. This should | |
| 13 // be used anywhere a new GenericSharedMemoryId is needed. | |
| 14 gfx::GenericSharedMemoryId GetNextGenericSharedMemoryId(); | |
| 15 | |
| 16 } // namespace ui | |
| 17 | |
| 18 #endif // SERVICES_UI_COMMON_GENERIC_SHARED_MEMORY_ID_GENERATOR_H_ | |
| OLD | NEW |