Chromium Code Reviews| 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 CONTENT_PUBLIC_BROWSER_MEMORY_COORDINATOR_TEST_UTILS_H_ | |
|
bashi
2016/11/08 06:19:21
nit: CONTENT_PUBLIC_TEST_MEMORY_COORDINATOR_TEST_U
hajimehoshi
2016/11/08 06:24:44
Done.
| |
| 6 #define CONTENT_PUBLIC_BROWSER_MEMORY_COORDINATOR_TEST_UTILS_H_ | |
| 7 | |
| 8 namespace content { | |
| 9 | |
| 10 // Enables the memory coordinator feature. | |
| 11 void EnableMemoryCoordinatorFeaturesForTesting(); | |
| 12 | |
| 13 // Sets up MemoryCoordinatorProxy with a regular MemoryCoordinator. | |
| 14 void SetUpMemoryCoordinatorProxyForTesting(); | |
| 15 | |
| 16 } | |
| 17 | |
| 18 #endif // CONTENT_PUBLIC_BROWSER_MEMORY_COORDINATOR_TEST_UTILS_H_ | |
| OLD | NEW |