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

Unified Diff: components/sync_driver/device_info_util.h

Issue 2203673002: [Sync] Move //components/sync_driver to //components/sync/driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sd-a
Patch Set: Full change rebased on static lib. Created 4 years, 4 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
« no previous file with comments | « components/sync_driver/device_info_tracker.h ('k') | components/sync_driver/device_info_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_driver/device_info_util.h
diff --git a/components/sync_driver/device_info_util.h b/components/sync_driver/device_info_util.h
deleted file mode 100644
index 0f1248754571e5f9b89a56181e76ec2b1e72b787..0000000000000000000000000000000000000000
--- a/components/sync_driver/device_info_util.h
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_SYNC_DRIVER_DEVICE_INFO_UTIL_H_
-#define COMPONENTS_SYNC_DRIVER_DEVICE_INFO_UTIL_H_
-
-#include <string>
-
-#include "base/time/time.h"
-
-namespace sync_pb {
-class DeviceInfoSpecifics;
-}
-
-namespace sync_driver {
-
-// This class contains constants and static helper functions that are shared
-// between DeviceInfoSyncService and DeviceInfoService.
-class DeviceInfoUtil {
- public:
- // The prefix to be appended before the cache guid when creating tags. This is
- // needed for backwards compatiblity with all old clients because we need to
- // ensure everyone uses the same logic to generate the tag, so that everyone
- // can independently hash the tag to the same value.
- static const char kClientTagPrefix[];
-
- // The delay between periodic updates to the entry corresponding to this
- // device.
- static const base::TimeDelta kPulseInterval;
-
- // The amount of time a device can go without an updates before we consider it
- // stale/inactive, and start ignoring it for active device counts.
- static const base::TimeDelta kActiveThreshold;
-
- // Determines the amount of time to wait before pulsing something with the
- // given |last_update| timestamp. This uses the current time from |now| along
- // with |kDeviceInfoPulseInterval|, and will never return a negative delay.
- // The smallest delay this function will return, even for something extremely
- // old will be a delay of 0 time units.
- static base::TimeDelta CalculatePulseDelay(const base::Time last_update,
- const base::Time now);
-
- // Determines if the given |last_update| timestamp should be considerend
- // active based on |kStaleDeviceInfoThreshold|, given the current time.
- static bool IsActive(const base::Time last_update, const base::Time now);
-
- // Formats ClientTag from DeviceInfoSpecifics.
- static std::string SpecificsToTag(
- const sync_pb::DeviceInfoSpecifics& specifics);
-
- // Extracts cache_guid from ClientTag.
- static std::string TagToCacheGuid(const std::string& tag);
-};
-
-} // namespace sync_driver
-
-#endif // COMPONENTS_SYNC_DRIVER_DEVICE_INFO_UTIL_H_
« no previous file with comments | « components/sync_driver/device_info_tracker.h ('k') | components/sync_driver/device_info_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698