// 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_SESSIONS_CONTENT_NAVIGATION_TASK_ID_H_ #define COMPONENTS_SESSIONS_CONTENT_NAVIGATION_TASK_ID_H_ #include <stdint.h> #include "base/supports_user_data.h" #include "components/sessions/core/sessions_export.h" namespace content { class NavigationEntry; } namespace sessions { // Stores Task ID data in a NavigationEntry. Task IDs track navigations and // relationships between navigations class SESSIONS_EXPORT NavigationTaskId : public base::SupportsUserData::Data { … }; } // namespace sessions #endif // COMPONENTS_SESSIONS_CONTENT_NAVIGATION_TASK_ID_H_