Index: content/browser/background_fetch/background_fetch_registration_id.h |
diff --git a/content/browser/background_fetch/background_fetch_registration_id.h b/content/browser/background_fetch/background_fetch_registration_id.h |
index 158512290c806fb6fff4958147312a6239d7107c..32fb5da8145ae94420d4c4c0c74085ddeeb09f5c 100644 |
--- a/content/browser/background_fetch/background_fetch_registration_id.h |
+++ b/content/browser/background_fetch/background_fetch_registration_id.h |
@@ -8,7 +8,6 @@ |
#include <stdint.h> |
#include <string> |
-#include "base/macros.h" |
#include "content/common/content_export.h" |
#include "url/origin.h" |
@@ -22,6 +21,7 @@ class CONTENT_EXPORT BackgroundFetchRegistrationId { |
BackgroundFetchRegistrationId(int64_t service_worker_registration_id, |
const url::Origin& origin, |
const std::string& tag); |
+ BackgroundFetchRegistrationId(const BackgroundFetchRegistrationId& other); |
BackgroundFetchRegistrationId(BackgroundFetchRegistrationId&& other); |
~BackgroundFetchRegistrationId(); |
@@ -49,8 +49,6 @@ class CONTENT_EXPORT BackgroundFetchRegistrationId { |
int64_t service_worker_registration_id_; |
url::Origin origin_; |
std::string tag_; |
- |
- DISALLOW_COPY(BackgroundFetchRegistrationId); |
}; |
} // namespace content |