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

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

Issue 2521823008: Migrate chrome_net_benchmarking_message_filter to mojo (Closed)
Patch Set: Do not add NetBenchmaring interface if benchmarking is disabled 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
« no previous file with comments | « chrome/common/common_message_generator.h ('k') | chrome/renderer/net_benchmarking_extension.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 [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
« no previous file with comments | « chrome/common/common_message_generator.h ('k') | chrome/renderer/net_benchmarking_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698