Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: chrome/common/net_benchmarking.mojom

Issue 2521823008: Migrate chrome_net_benchmarking_message_filter to mojo (Closed)
Patch Set: change all calls to use default sync method Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698