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

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

Issue 2521823008: Migrate chrome_net_benchmarking_message_filter to mojo (Closed)
Patch Set: Renamed mojo class to net_benchmarking 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
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 ClearCache() => (int32 result);
17
18 // Message sent from the renderer to the browser to request that the browser
19 // clear the host cache. Used for debugging/testing.
20 ClearHostResolverCache();
21
22 // Message sent from the renderer to the browser to request that the browser
23 // clear the predictor cache. Used for debugging/testing.
24 ClearPredictorCache();
25 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698