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

Side by Side Diff: components/sessions/core/serialized_navigation_entry.cc

Issue 1361613002: Move all core files in //components/sessions into core/ subdir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698