| Index: components/sessions/core/serialized_navigation_driver.h
|
| diff --git a/components/sessions/core/serialized_navigation_driver.h b/components/sessions/core/serialized_navigation_driver.h
|
| index 5fc261e4a95c5915f0c3dc2fef55beb33ad14352..74bbfefe1cbe9fbc3d1b323a2fa0c23d9fcfe132 100644
|
| --- a/components/sessions/core/serialized_navigation_driver.h
|
| +++ b/components/sessions/core/serialized_navigation_driver.h
|
| @@ -18,8 +18,6 @@ class SerializedNavigationEntry;
|
| // must be provided by the driver on each platform.
|
| class SESSIONS_EXPORT SerializedNavigationDriver {
|
| public:
|
| - virtual ~SerializedNavigationDriver() {}
|
| -
|
| // Returns the singleton SerializedNavigationDriver.
|
| static SerializedNavigationDriver* Get();
|
|
|
| @@ -50,6 +48,9 @@ class SESSIONS_EXPORT SerializedNavigationDriver {
|
| // Removes the referrer from the encoded page state.
|
| virtual std::string StripReferrerFromPageState(
|
| const std::string& page_state) const = 0;
|
| +
|
| + protected:
|
| + virtual ~SerializedNavigationDriver() {}
|
| };
|
|
|
| } // namespace sessions
|
|
|