// 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_H_ #define COMPONENTS_USER_NOTES_INTERFACES_USER_NOTES_UI_H_ #include "base/supports_user_data.h" namespace user_notes { // Interface that the UI layer of User Notes must implement. Used by the // business logic in the service to send commands to the UI. class UserNotesUI : public base::SupportsUserData::Data { … }; } // namespace user_notes #endif // COMPONENTS_USER_NOTES_INTERFACES_USER_NOTES_UI_H_