// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_ #define EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_ #include <stddef.h> #include <map> #include <set> #include <string> #include "base/timer/elapsed_timer.h" #include "extensions/common/mojom/run_location.mojom-shared.h" #include "extensions/common/user_script.h" #include "third_party/blink/public/common/tokens/tokens.h" namespace content { class RenderFrame; } namespace extensions { // A struct containing information about a script run. struct ScriptsRunInfo { … }; } // namespace extensions #endif // EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_