// 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_SAFE_BUILTINS_H_ #define EXTENSIONS_RENDERER_SAFE_BUILTINS_H_ #include <memory> #include "base/memory/raw_ptr.h" #include "v8/include/v8-forward.h" namespace extensions { class ScriptContext; // A collection of safe builtin objects, in that they won't be tainted by // extensions overriding methods on them. class SafeBuiltins { … }; } // namespace extensions #endif // EXTENSIONS_RENDERER_SAFE_BUILTINS_H_