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

Unified Diff: content/renderer/background_sync/background_sync_client_impl.h

Issue 2490623005: Remove InterfaceRegistry/Provider from service workers (Closed)
Patch Set: rebase/fix comment Created 4 years, 1 month 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/renderer/background_sync/background_sync_client_impl.h
diff --git a/content/renderer/background_sync/background_sync_client_impl.h b/content/renderer/background_sync/background_sync_client_impl.h
deleted file mode 100644
index 3db44a022e66d9646e82fd0a5866e2a1c7dec2a7..0000000000000000000000000000000000000000
--- a/content/renderer/background_sync/background_sync_client_impl.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2015 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 CONTENT_RENDERER_BACKGROUND_SYNC_BACKGROUND_SYNC_CLIENT_IMPL_H_
-#define CONTENT_RENDERER_BACKGROUND_SYNC_BACKGROUND_SYNC_CLIENT_IMPL_H_
-
-#include <stdint.h>
-
-#include <map>
-
-#include "base/compiler_specific.h"
-#include "base/macros.h"
-#include "content/common/content_export.h"
-#include "third_party/WebKit/public/platform/modules/background_sync/background_sync.mojom.h"
-
-namespace content {
-
-class CONTENT_EXPORT BackgroundSyncClientImpl
- : public NON_EXPORTED_BASE(blink::mojom::BackgroundSyncServiceClient) {
- public:
- static void Create(blink::mojom::BackgroundSyncServiceClientRequest request);
-
- ~BackgroundSyncClientImpl() override;
-
- private:
- BackgroundSyncClientImpl();
-
- // BackgroundSyncServiceClient methods:
- void Sync(const std::string& tag,
- blink::mojom::BackgroundSyncEventLastChance last_chance,
- const SyncCallback& callback) override;
-
- DISALLOW_COPY_AND_ASSIGN(BackgroundSyncClientImpl);
-};
-
-} // namespace content
-
-#endif // CONTENT_RENDERER_BACKGROUND_SYNC_BACKGROUND_SYNC_CLIENT_IMPL_H_
« no previous file with comments | « content/renderer/background_sync/PRESUBMIT.py ('k') | content/renderer/background_sync/background_sync_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698