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 module chrome.mojom; | |
| 6 | |
| 7 interface ChromeNetBenchmarking { | |
|
Sam McNally
2016/12/05 06:57:10
Let's call this NetBenchmarking instead.
dvallet
2016/12/07 02:21:02
Done
| |
| 8 // Message sent from the renderer to the browser to request that the browser | |
| 9 // close all sockets. Used for debugging/testing. | |
| 10 CloseCurrentConnections(); | |
|
Sam McNally
2016/12/05 06:57:10
These messages should [Sync].
dvallet
2016/12/07 02:21:02
Done. What's your reasoning for this having to be
Sam McNally
2016/12/08 22:57:46
The messages they replace were declared with IPC_S
dvallet
2016/12/12 22:04:37
Done
| |
| 11 | |
| 12 // Message sent from the renderer to the browser to request that the browser | |
| 13 // enable or disable the cache. Used for debugging/testing. | |
| 14 SetCacheMode(bool enabled); | |
|
Sam McNally
2016/12/05 06:57:09
This doesn't appear to be used. I think we can del
dvallet
2016/12/07 02:21:02
Done
| |
| 15 | |
| 16 // Message sent from the renderer to the browser to request that the browser | |
| 17 // clear the cache. Used for debugging/testing. | |
| 18 // |result| is the returned status from the operation. | |
| 19 ClearCache() => (int32 result); | |
| 20 | |
| 21 // Message sent from the renderer to the browser to request that the browser | |
| 22 // clear the host cache. Used for debugging/testing. | |
| 23 ClearHostResolverCache(); | |
| 24 | |
| 25 // Message sent from the renderer to the browser to request that the browser | |
| 26 // clear the predictor cache. Used for debugging/testing. | |
| 27 ClearPredictorCache(); | |
| 28 }; | |
| OLD | NEW |