// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_USER_NOTES_INTERFACES_USER_NOTE_SERVICE_DELEGATE_H_ #define COMPONENTS_USER_NOTES_INTERFACES_USER_NOTE_SERVICE_DELEGATE_H_ #include <vector> namespace content { class RenderFrameHost; } // namespace content namespace user_notes { class UserNotesUI; // Interface that embedders of the UserNoteService must implement. class UserNoteServiceDelegate { … }; } // namespace user_notes #endif // COMPONENTS_USER_NOTES_INTERFACES_USER_NOTE_SERVICE_DELEGATE_H_