// Copyright 2018 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_ENTRY_H_ #define COMPONENTS_SEND_TAB_TO_SELF_SEND_TAB_TO_SELF_ENTRY_H_ #include <string> #include "base/time/time.h" #include "url/gurl.h" namespace sync_pb { class SendTabToSelfSpecifics; } namespace send_tab_to_self { constexpr base::TimeDelta kExpiryTime = …; class SendTabToSelfLocal; // A tab that is being shared. The URL is a unique identifier for an entry, as // such it should not be empty and is the only thing considered when comparing // entries. // The java version of this class: SendTabToSelfEntry.java class SendTabToSelfEntry { … }; } // namespace send_tab_to_self #endif // COMPONENTS_SEND_TAB_TO_SELF_SEND_TAB_TO_SELF_ENTRY_H_