// Copyright 2017 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_CHROME_SETTING_H_ #define EXTENSIONS_RENDERER_CHROME_SETTING_H_ #include <string> #include "base/memory/raw_ptr.h" #include "base/values.h" #include "extensions/renderer/bindings/argument_spec.h" #include "gin/wrappable.h" #include "v8/include/v8-forward.h" namespace gin { class Arguments; } namespace extensions { class APIEventHandler; class APIRequestHandler; class BindingAccessChecker; // The custom implementation of the ChromeSetting type exposed to APIs. class ChromeSetting final : public gin::Wrappable<ChromeSetting> { … }; } // namespace extensions #endif // EXTENSIONS_RENDERER_CHROME_SETTING_H_