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

Side by Side Diff: components/sessions/core/serialized_navigation_entry_test_helper.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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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_test_helper.h" 5 #include "components/sessions/core/serialized_navigation_entry_test_helper.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "base/time/time.h" 8 #include "base/time/time.h"
9 #include "components/sessions/serialized_navigation_entry.h" 9 #include "components/sessions/core/serialized_navigation_entry.h"
10 #include "sync/util/time.h" 10 #include "sync/util/time.h"
11 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
12 #include "url/gurl.h" 12 #include "url/gurl.h"
13 13
14 namespace sessions { 14 namespace sessions {
15 15
16 namespace test_data { 16 namespace test_data {
17 17
18 const int kIndex = 3; 18 const int kIndex = 3;
19 const int kUniqueID = 50; 19 const int kUniqueID = 50;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 } 150 }
151 151
152 // static 152 // static
153 void SerializedNavigationEntryTestHelper::SetTimestamp( 153 void SerializedNavigationEntryTestHelper::SetTimestamp(
154 base::Time timestamp, 154 base::Time timestamp,
155 SerializedNavigationEntry* navigation) { 155 SerializedNavigationEntry* navigation) {
156 navigation->timestamp_ = timestamp; 156 navigation->timestamp_ = timestamp;
157 } 157 }
158 158
159 } // namespace sessions 159 } // namespace sessions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698