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

Unified Diff: chrome/browser/sync/glue/session_sync_test_helper.h

Issue 2343463003: [Sync] Fix namespaces for the sync_sessions component. (Closed)
Patch Set: Fix Android. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698