| Index: chrome/browser/sync/glue/session_model_associator.cc
|
| diff --git a/chrome/browser/sync/glue/session_model_associator.cc b/chrome/browser/sync/glue/session_model_associator.cc
|
| index 58dc3a6d7004965a86d5c668458f91bc75a41df8..7cfbc15392317026da5260965e3fd039bb4f7e03 100644
|
| --- a/chrome/browser/sync/glue/session_model_associator.cc
|
| +++ b/chrome/browser/sync/glue/session_model_associator.cc
|
| @@ -681,9 +681,9 @@ void SessionModelAssociator::PopulateSessionSpecificsNavigation(
|
| tab_navigation->set_page_transition(
|
| sync_pb::SyncEnums_PageTransition_GENERATED);
|
| break;
|
| - case content::PAGE_TRANSITION_START_PAGE:
|
| + case content::PAGE_TRANSITION_AUTO_TOPLEVEL:
|
| tab_navigation->set_page_transition(
|
| - sync_pb::SyncEnums_PageTransition_START_PAGE);
|
| + sync_pb::SyncEnums_PageTransition_AUTO_TOPLEVEL);
|
| break;
|
| case content::PAGE_TRANSITION_FORM_SUBMIT:
|
| tab_navigation->set_page_transition(
|
| @@ -1253,8 +1253,8 @@ void SessionModelAssociator::AppendSessionTabNavigation(
|
| case sync_pb::SyncEnums_PageTransition_GENERATED:
|
| transition = content::PAGE_TRANSITION_GENERATED;
|
| break;
|
| - case sync_pb::SyncEnums_PageTransition_START_PAGE:
|
| - transition = content::PAGE_TRANSITION_START_PAGE;
|
| + case sync_pb::SyncEnums_PageTransition_AUTO_TOPLEVEL:
|
| + transition = content::PAGE_TRANSITION_AUTO_TOPLEVEL;
|
| break;
|
| case sync_pb::SyncEnums_PageTransition_FORM_SUBMIT:
|
| transition = content::PAGE_TRANSITION_FORM_SUBMIT;
|
|
|