// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_MOJO_BINDER_POLICY_MAP_IMPL_H_ #define CONTENT_BROWSER_MOJO_BINDER_POLICY_MAP_IMPL_H_ #include <string> #include <string_view> #include "base/containers/flat_map.h" #include "content/common/content_export.h" #include "content/public/browser/mojo_binder_policy_map.h" namespace content { // Implements MojoBinderPolicyMap and owns a policy map. class CONTENT_EXPORT MojoBinderPolicyMapImpl : public MojoBinderPolicyMap { … }; } // namespace content #endif // CONTENT_BROWSER_MOJO_BINDER_POLICY_MAP_IMPL_H_