| Index: sync/protocol/proto_value_conversions.cc
|
| diff --git a/sync/protocol/proto_value_conversions.cc b/sync/protocol/proto_value_conversions.cc
|
| index be6394257c259167b7b037e035bb77d5af891277..7fe64045122492d3feeb14c46980ecfb50345204 100644
|
| --- a/sync/protocol/proto_value_conversions.cc
|
| +++ b/sync/protocol/proto_value_conversions.cc
|
| @@ -203,6 +203,15 @@ base::DictionaryValue* TabNavigationToValue(
|
| SET_STR_REP(content_pack_categories);
|
| SET_INT32(http_status_code);
|
| SET_INT32(referrer_policy);
|
| + 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;
|
| }
|
|
|
|
|