// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_REGISTRATION_ID_H_ #define CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_REGISTRATION_ID_H_ #include <stdint.h> #include <string> #include "content/common/content_export.h" #include "third_party/blink/public/common/storage_key/storage_key.h" namespace content { // The Background Fetch registration id corresponds to the information required // to uniquely identify a Background Fetch registration in scope of a profile. class CONTENT_EXPORT BackgroundFetchRegistrationId { … }; } // namespace content #endif // CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_REGISTRATION_ID_H_