Index: sync/protocol/proto_value_conversions.cc |
diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc |
index 06ecdfee276aa903faf678e920dabd136b068d98..3dd133be91f3586a41e1508c955d6fbdb4d0d4d1 100644 |
--- a/sync/protocol/proto_value_conversions.cc |
+++ b/sync/protocol/proto_value_conversions.cc |
@@ -205,6 +205,15 @@ base::DictionaryValue* TabNavigationToValue( |
SET_INT32(http_status_code); |
SET_INT32(referrer_policy); |
SET_BOOL(is_restored); |
+ SET_REP(navigation_redirect, NavigationRedirectToValue); |
+ SET_STR(last_navigation_redirect_url); |
+ return value; |
+} |
+ |
+base::DictionaryValue* NavigationRedirectToValue( |
+ const sync_pb::NavigationRedirect& proto) { |
+ base::DictionaryValue* value = new base::DictionaryValue(); |
+ SET_STR(url); |
return value; |
} |