chromium/components/user_notes/interfaces/user_notes_ui_delegate.h

// 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_NOTES_UI_DELEGATE_H_
#define COMPONENTS_USER_NOTES_INTERFACES_USER_NOTES_UI_DELEGATE_H_

#include <string>

#include "base/unguessable_token.h"

namespace content {
class RenderFrameHost;
}  // namespace content

namespace user_notes {

// Interface used by the UI layer (e.g. Side Panel on desktop) to delegate
// handling for some note-specific user actions.
class UserNotesUIDelegate {};

}  // namespace user_notes

#endif  // COMPONENTS_USER_NOTES_INTERFACES_USER_NOTES_UI_DELEGATE_H_