| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ | 5 #ifndef COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ |
| 6 #define COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ | 6 #define COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ |
| 7 | 7 |
| 8 #include "components/sessions/core/serialized_navigation_driver.h" | 8 #include "components/sessions/core/serialized_navigation_driver.h" |
| 9 | 9 |
| 10 #include "components/sessions/sessions_export.h" | 10 #include "components/sessions/sessions_export.h" |
| 11 | 11 |
| 12 template <typename T> struct DefaultSingletonTraits; | 12 template <typename T> struct DefaultSingletonTraits; |
| 13 | 13 |
| 14 namespace sessions { | 14 namespace sessions { |
| 15 | 15 |
| 16 // Provides an implementation of SerializedNavigationDriver that is backed by | 16 // Provides an implementation of SerializedNavigationDriver that is backed by |
| 17 // content classes. | 17 // content classes. |
| 18 class SESSIONS_EXPORT_PRIVATE ContentSerializedNavigationDriver | 18 class SESSIONS_EXPORT_PRIVATE ContentSerializedNavigationDriver |
| 19 : public SerializedNavigationDriver { | 19 : public SerializedNavigationDriver { |
| 20 public: | 20 public: |
| 21 virtual ~ContentSerializedNavigationDriver(); | 21 ~ContentSerializedNavigationDriver() override; |
| 22 | 22 |
| 23 // Returns the singleton ContentSerializedNavigationDriver. Almost all | 23 // Returns the singleton ContentSerializedNavigationDriver. Almost all |
| 24 // callers should use SerializedNavigationDriver::Get() instead. | 24 // callers should use SerializedNavigationDriver::Get() instead. |
| 25 static ContentSerializedNavigationDriver* GetInstance(); | 25 static ContentSerializedNavigationDriver* GetInstance(); |
| 26 | 26 |
| 27 // SerializedNavigationDriver implementation. | 27 // SerializedNavigationDriver implementation. |
| 28 virtual int GetDefaultReferrerPolicy() const override; | 28 int GetDefaultReferrerPolicy() const override; |
| 29 virtual std::string GetSanitizedPageStateForPickle( | 29 std::string GetSanitizedPageStateForPickle( |
| 30 const SerializedNavigationEntry* navigation) const override; | 30 const SerializedNavigationEntry* navigation) const override; |
| 31 virtual void Sanitize(SerializedNavigationEntry* navigation) const override; | 31 void Sanitize(SerializedNavigationEntry* navigation) const override; |
| 32 | 32 |
| 33 private: | 33 private: |
| 34 ContentSerializedNavigationDriver(); | 34 ContentSerializedNavigationDriver(); |
| 35 friend struct DefaultSingletonTraits<ContentSerializedNavigationDriver>; | 35 friend struct DefaultSingletonTraits<ContentSerializedNavigationDriver>; |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 } // namespace sessions | 38 } // namespace sessions |
| 39 | 39 |
| 40 #endif // COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ | 40 #endif // COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ |
| OLD | NEW |