| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "components/sessions/serialized_navigation_entry.h" | 5 #include "components/sessions/core/serialized_navigation_entry.h" |
| 6 | 6 |
| 7 #include "base/pickle.h" | 7 #include "base/pickle.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "components/sessions/core/serialized_navigation_driver.h" | 9 #include "components/sessions/core/serialized_navigation_driver.h" |
| 10 #include "sync/protocol/session_specifics.pb.h" | 10 #include "sync/protocol/session_specifics.pb.h" |
| 11 #include "sync/util/time.h" | 11 #include "sync/util/time.h" |
| 12 | 12 |
| 13 namespace sessions { | 13 namespace sessions { |
| 14 | 14 |
| 15 const char kSearchTermsKey[] = "search_terms"; | 15 const char kSearchTermsKey[] = "search_terms"; |
| (...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 redirect_chain_[last_entry].spec()); | 464 redirect_chain_[last_entry].spec()); |
| 465 } | 465 } |
| 466 } | 466 } |
| 467 | 467 |
| 468 sync_data.set_is_restored(is_restored_); | 468 sync_data.set_is_restored(is_restored_); |
| 469 | 469 |
| 470 return sync_data; | 470 return sync_data; |
| 471 } | 471 } |
| 472 | 472 |
| 473 } // namespace sessions | 473 } // namespace sessions |
| OLD | NEW |