blob: 6cb9ba47f61b0be0f35e534e0d7a4433a1d42c22 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Stores calls to sandboxed_engine_request.mojom and
// sandboxed_cleaner_engine_request.mojom for later analysis.
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
package chrome_cleaner;
message APICall {
string file_name = 1;
string function_name = 2;
int64 time_called_ticks = 3;
map<string, string> parameters = 4;
}
message CallHistory {
repeated APICall api_calls = 1;
// This field corresponds to the hash of the git commit corresponding
// to this build version.
string build_version = 2;
}