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

Unified Diff: content/browser/background_fetch/background_fetch_registration_id.h

Issue 2774343002: Hook up BackgroundFetchServiceImpl::Fetch() to start a fetch (Closed)
Patch Set: rebase Created 3 years, 9 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
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

Powered by Google App Engine
This is Rietveld 408576698