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

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

Issue 2521823008: Migrate chrome_net_benchmarking_message_filter to mojo (Closed)
Patch Set: change ClearPredictorCache to run on UI thread via PostTask 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 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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698