Chromium Code Reviews| Index: chrome/browser/sync/glue/session_sync_test_helper.h |
| diff --git a/chrome/browser/sync/glue/session_sync_test_helper.h b/chrome/browser/sync/glue/session_sync_test_helper.h |
| index f4055c050c1f2bf96bd02fe02b664b8bad31ad6c..b1de288cf68cea54ab895d44a90db69b71d6ccb8 100644 |
| --- a/chrome/browser/sync/glue/session_sync_test_helper.h |
| +++ b/chrome/browser/sync/glue/session_sync_test_helper.h |
| @@ -11,15 +11,13 @@ |
| #include "base/macros.h" |
| #include "components/sessions/core/session_id.h" |
| -namespace sync_driver { |
| -struct SyncedSession; |
| -} |
| - |
| namespace sync_pb { |
| class SessionSpecifics; |
| } |
| -namespace browser_sync { |
| +namespace sync_sessions { |
|
skym
2016/09/14 22:29:58
Please move to components/sync_sessions before thi
maxbogue
2016/09/15 00:43:53
Done.
|
| + |
| +struct SyncedSession; |
| class SessionSyncTestHelper { |
| public: |
| @@ -35,7 +33,7 @@ class SessionSyncTestHelper { |
| static void VerifySyncedSession( |
| const std::string& tag, |
| const std::vector<std::vector<SessionID::id_type>>& windows, |
| - const sync_driver::SyncedSession& session); |
| + const SyncedSession& session); |
| // Build a SessionSpecifics object with a tab and sample data. Uses a |
| // monotonically increasing variable to generate tab_node_ids and avoid |
| @@ -66,6 +64,6 @@ class SessionSyncTestHelper { |
| DISALLOW_COPY_AND_ASSIGN(SessionSyncTestHelper); |
| }; |
| -} // namespace browser_sync |
| +} // namespace sync_sessions |
| #endif // CHROME_BROWSER_SYNC_GLUE_SESSION_SYNC_TEST_HELPER_H_ |