| 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);
|
| }
|
|
|
|
|