| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 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_MEMORY_INSTRUMENTATION_PUBLIC_CPP_COORDINATOR_H_ | |
| 6 #define SERVICES_MEMORY_INSTRUMENTATION_PUBLIC_CPP_COORDINATOR_H_ | |
| 7 | |
| 8 #include "services/memory_instrumentation/public/interfaces/memory_instrumentati
on.mojom.h" | |
| 9 | |
| 10 namespace memory_instrumentation { | |
| 11 | |
| 12 class Coordinator { | |
| 13 public: | |
| 14 // Binds a CoordinatorRequest to this Coordinator instance. | |
| 15 virtual void BindCoordinatorRequest(mojom::CoordinatorRequest) = 0; | |
| 16 }; | |
| 17 | |
| 18 } // namespace memory_instrumentation | |
| 19 | |
| 20 #endif // SERVICES_MEMORY_INSTRUMENTATION_PUBLIC_CPP_COORDINATOR_H_ | |
| OLD | NEW |