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

Unified Diff: components/sync/test/fake_server/sessions_hierarchy.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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: components/sync/test/fake_server/sessions_hierarchy.cc
diff --git a/sync/test/fake_server/sessions_hierarchy.cc b/components/sync/test/fake_server/sessions_hierarchy.cc
similarity index 85%
rename from sync/test/fake_server/sessions_hierarchy.cc
rename to components/sync/test/fake_server/sessions_hierarchy.cc
index 61ac472034b216fcd322e94a8922946490db6a09..63d71965c9a132ce2706ed36479cf1fa2304cc85 100644
--- a/sync/test/fake_server/sessions_hierarchy.cc
+++ b/components/sync/test/fake_server/sessions_hierarchy.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "sync/test/fake_server/sessions_hierarchy.h"
+#include "components/sync/test/fake_server/sessions_hierarchy.h"
#include <sstream>
#include <string>
@@ -13,15 +13,13 @@ SessionsHierarchy::SessionsHierarchy() {}
SessionsHierarchy::~SessionsHierarchy() {}
-void SessionsHierarchy::AddWindow(
- const std::string& tab) {
+void SessionsHierarchy::AddWindow(const std::string& tab) {
SessionsHierarchy::Window window;
window.insert(tab);
windows_.insert(window);
}
-void SessionsHierarchy::AddWindow(
- const std::multiset<std::string>& tabs) {
+void SessionsHierarchy::AddWindow(const std::multiset<std::string>& tabs) {
windows_.insert(tabs);
}
« no previous file with comments | « components/sync/test/fake_server/sessions_hierarchy.h ('k') | components/sync/test/fake_server/tombstone_entity.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698