invalidation_prefs.cc 652 B

12345678910111213141516171819
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/invalidation/impl/invalidation_prefs.h"
  5. namespace invalidation {
  6. namespace prefs {
  7. // The prefference for storing client ID for the invalidator.
  8. const char kFCMInvalidationClientIDCacheDeprecated[] =
  9. "fcm.invalidation.client_id_cache";
  10. // The preference for storing client ID for the invalidator, keyed by sender ID.
  11. const char kInvalidationClientIDCache[] =
  12. "invalidation.per_sender_client_id_cache";
  13. } // namespace prefs
  14. } // namespace invalidation