blob: 9d4c49bfaa475cff006324a3ddf9b362bba07188 [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module chrome.mojom;
interface NetBenchmarking {
// Message sent from the renderer to the browser to request that the browser
// close all sockets. Used for debugging/testing.
[Sync]
CloseCurrentConnections() => ();
// Message sent from the renderer to the browser to request that the browser
// clear the cache. Used for debugging/testing.
[Sync]
ClearCache() => ();
// Message sent from the renderer to the browser to request that the browser
// clear the host cache. Used for debugging/testing.
[Sync]
ClearHostResolverCache() => ();
// Message sent from the renderer to the browser to request that the browser
// clear the predictor cache. Used for debugging/testing.
[Sync]
ClearPredictorCache() => ();
};