// Copyright 2014 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_CORE_SERIALIZED_NAVIGATION_DRIVER_H_ #define COMPONENTS_SESSIONS_CORE_SERIALIZED_NAVIGATION_DRIVER_H_ #include <string> #include "components/sessions/core/sessions_export.h" namespace sessions { class SerializedNavigationEntry; // The SerializedNavigationDriver interface allows SerializedNavigationEntry to // obtain information from a singleton driver object. A concrete implementation // must be provided by the driver on each platform. class SESSIONS_EXPORT SerializedNavigationDriver { … }; } // namespace sessions #endif // COMPONENTS_SESSIONS_CORE_SERIALIZED_NAVIGATION_DRIVER_H_