// Copyright 2019 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_SEND_TAB_TO_SELF_SEND_TAB_TO_SELF_MODEL_OBSERVER_H_ #define COMPONENTS_SEND_TAB_TO_SELF_SEND_TAB_TO_SELF_MODEL_OBSERVER_H_ #include <string> #include <vector> namespace send_tab_to_self { class SendTabToSelfEntry; // Observer for the Send Tab To Self model. In the observer methods care should // be taken to not modify the model. class SendTabToSelfModelObserver { … }; } // namespace send_tab_to_self #endif // COMPONENTS_SEND_TAB_TO_SELF_SEND_TAB_TO_SELF_MODEL_OBSERVER_H_