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

Unified Diff: content/browser/shared_worker/shared_worker_service_impl.h

Issue 140333011: Add some empty classes for the embedded SharedWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove shared_worker_host shared_worker_instance shared_worker_message_filter Created 6 years, 10 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
« no previous file with comments | « no previous file | content/browser/shared_worker/shared_worker_service_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/shared_worker/shared_worker_service_impl.h
diff --git a/content/browser/shared_worker/shared_worker_service_impl.h b/content/browser/shared_worker/shared_worker_service_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..4126cbc1297d811777227b1cd3fa81ae3b85b0b0
--- /dev/null
+++ b/content/browser/shared_worker/shared_worker_service_impl.h
@@ -0,0 +1,47 @@
+// Copyright 2014 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_BROWSER_SHARED_WORKER_SHARED_WORKER_SERVICE_IMPL_H_
+#define CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_SERVICE_IMPL_H_
+
+#include "base/compiler_specific.h"
+#include "base/memory/singleton.h"
+#include "base/observer_list.h"
+#include "content/public/browser/notification_observer.h"
+#include "content/public/browser/notification_registrar.h"
+#include "content/public/browser/worker_service.h"
+
+namespace content {
+
+class WorkerServiceObserver;
+
+// If "enable-embedded-shared-worker" is set this class will be used in stead of
+// WorkerServiceImpl.
+// TODO(horo): implement this class.
+class CONTENT_EXPORT SharedWorkerServiceImpl
+ : public NON_EXPORTED_BASE(WorkerService) {
+ public:
+ // Returns the SharedWorkerServiceImpl singleton.
+ static SharedWorkerServiceImpl* GetInstance();
+
+ // WorkerService implementation:
+ virtual bool TerminateWorker(int process_id, int route_id) OVERRIDE;
+ virtual std::vector<WorkerInfo> GetWorkers() OVERRIDE;
+ virtual void AddObserver(WorkerServiceObserver* observer) OVERRIDE;
+ virtual void RemoveObserver(WorkerServiceObserver* observer) OVERRIDE;
+
+ private:
+ friend struct DefaultSingletonTraits<SharedWorkerServiceImpl>;
+
+ SharedWorkerServiceImpl();
+ virtual ~SharedWorkerServiceImpl();
+
+ ObserverList<WorkerServiceObserver> observers_;
+
+ DISALLOW_COPY_AND_ASSIGN(SharedWorkerServiceImpl);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_SHARED_WORKER_SHARED_WORKER_SERVICE_IMPL_H_
« no previous file with comments | « no previous file | content/browser/shared_worker/shared_worker_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698