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 NetBenchmarking { | |
8 // Message sent from the renderer to the browser to request that the browser | |
sky
2016/12/13 02:02:52
I think test only functions should live in separat
dvallet
2016/12/13 05:20:04
Done. Like so?
Sam McNally
2016/12/13 22:31:46
All the messages in this interface are test-only.
| |
9 // close all sockets. Used for debugging/testing. | |
10 [Sync] | |
11 CloseCurrentConnections() => (); | |
12 | |
13 // Message sent from the renderer to the browser to request that the browser | |
14 // clear the cache. Used for debugging/testing. | |
15 // |result| is the returned status from the operation. | |
16 [Sync] | |
17 ClearCache() => (int32 result); | |
18 | |
19 // Message sent from the renderer to the browser to request that the browser | |
20 // clear the host cache. Used for debugging/testing. | |
21 [Sync] | |
22 ClearHostResolverCache() => (); | |
23 | |
24 // Message sent from the renderer to the browser to request that the browser | |
25 // clear the predictor cache. Used for debugging/testing. | |
26 [Sync] | |
27 ClearPredictorCache() => (); | |
28 }; | |
OLD | NEW |