| Index: chrome/browser/invalidation/invalidator_storage.cc
|
| diff --git a/chrome/browser/sync/invalidations/invalidator_storage.cc b/chrome/browser/invalidation/invalidator_storage.cc
|
| similarity index 99%
|
| rename from chrome/browser/sync/invalidations/invalidator_storage.cc
|
| rename to chrome/browser/invalidation/invalidator_storage.cc
|
| index e88d0e24e012cf1b263712a52bbc51175df49094..9357fdbef7df19785b90d37693b55d9f4807ee37 100644
|
| --- a/chrome/browser/sync/invalidations/invalidator_storage.cc
|
| +++ b/chrome/browser/invalidation/invalidator_storage.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 "chrome/browser/sync/invalidations/invalidator_storage.h"
|
| +#include "chrome/browser/invalidation/invalidator_storage.h"
|
|
|
| #include "base/base64.h"
|
| #include "base/bind.h"
|
| @@ -20,8 +20,6 @@
|
|
|
| using syncer::InvalidationStateMap;
|
|
|
| -namespace browser_sync {
|
| -
|
| namespace {
|
|
|
| const char kSourceKey[] = "source";
|
| @@ -94,6 +92,8 @@ DictionaryValue* ObjectIdAndStateToValue(
|
|
|
| } // namespace
|
|
|
| +namespace invalidation {
|
| +
|
| // static
|
| void InvalidatorStorage::RegisterUserPrefs(PrefRegistrySyncable* registry) {
|
| registry->RegisterListPref(prefs::kInvalidatorMaxInvalidationVersions,
|
| @@ -341,4 +341,4 @@ void InvalidatorStorage::Acknowledge(const invalidation::ObjectId& id,
|
| state_map_list);
|
| }
|
|
|
| -} // namespace browser_sync
|
| +} // namespace invalidation
|
|
|