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_ | |
| 6 #define CONTENT_PUBLIC_BROWSER_MEMORY_COORDINATOR_TEST_UTILS_H_ | |
| 7 | |
| 8 namespace content { | |
| 9 | |
| 10 // Enables the memory coordinator feature. | |
| 11 void EnableFeaturesForTesting(); | |
|
bashi
2016/11/07 14:11:30
content::EnableFeaturesForTesting() sounds a bit g
hajimehoshi
2016/11/08 06:03:04
Oops, Done.
| |
| 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 |