Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: components/sessions/content/content_serialized_navigation_driver.h

Issue 2310363002: Persist offline page info in a navigation entry if needed (Closed)
Patch Set: Add extended info support Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/core/sessions_export.h" 10 #include "components/sessions/core/sessions_export.h"
(...skipping 19 matching lines...) Expand all
30 int GetDefaultReferrerPolicy() const override; 30 int GetDefaultReferrerPolicy() const override;
31 bool MapReferrerPolicyToOldValues(int referrer_policy, 31 bool MapReferrerPolicyToOldValues(int referrer_policy,
32 int* mapped_referrer_policy) const override; 32 int* mapped_referrer_policy) const override;
33 bool MapReferrerPolicyToNewValues(int referrer_policy, 33 bool MapReferrerPolicyToNewValues(int referrer_policy,
34 int* mapped_referrer_policy) const override; 34 int* mapped_referrer_policy) const override;
35 std::string GetSanitizedPageStateForPickle( 35 std::string GetSanitizedPageStateForPickle(
36 const SerializedNavigationEntry* navigation) const override; 36 const SerializedNavigationEntry* navigation) const override;
37 void Sanitize(SerializedNavigationEntry* navigation) const override; 37 void Sanitize(SerializedNavigationEntry* navigation) const override;
38 std::string StripReferrerFromPageState( 38 std::string StripReferrerFromPageState(
39 const std::string& page_state) const override; 39 const std::string& page_state) const override;
40 void RegisterExtendedInfoHandler(
41 const std::string& key,
42 std::unique_ptr<ExtendedInfoHandler> handler) override;
43 const ExtendedInfoHandlerMap& GetAllExtendedInfoHandlers() const override;
40 44
41 private: 45 private:
42 ContentSerializedNavigationDriver(); 46 ContentSerializedNavigationDriver();
43 friend struct base::DefaultSingletonTraits<ContentSerializedNavigationDriver>; 47 friend struct base::DefaultSingletonTraits<ContentSerializedNavigationDriver>;
48
49 ExtendedInfoHandlerMap extended_info_handler_map_;
44 }; 50 };
45 51
46 } // namespace sessions 52 } // namespace sessions
47 53
48 #endif // COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_ 54 #endif // COMPONENTS_SESSIONS_CONTENT_CONTENT_SERIALIZED_NAVIGATION_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698