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

Unified Diff: webrtc/base/worker.h

Issue 2370793002: Delete unused base/worker.{cc,h}. (Closed)
Patch Set: Created 4 years, 3 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 | « webrtc/base/base.gyp ('k') | webrtc/base/worker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/worker.h
diff --git a/webrtc/base/worker.h b/webrtc/base/worker.h
deleted file mode 100644
index 17ae8cf67bc77f435eddc174793813cb59c94b07..0000000000000000000000000000000000000000
--- a/webrtc/base/worker.h
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- * Copyright 2004 The WebRTC Project Authors. All rights reserved.
- *
- * Use of this source code is governed by a BSD-style license
- * that can be found in the LICENSE file in the root of the source
- * tree. An additional intellectual property rights grant can be found
- * in the file PATENTS. All contributing project authors may
- * be found in the AUTHORS file in the root of the source tree.
- */
-
-#ifndef WEBRTC_BASE_WORKER_H_
-#define WEBRTC_BASE_WORKER_H_
-
-#include "webrtc/base/constructormagic.h"
-#include "webrtc/base/messagehandler.h"
-
-namespace rtc {
-
-class Thread;
-
-// A worker is an object that performs some specific long-lived task in an
-// event-driven manner.
-// The only method that should be considered thread-safe is HaveWork(), which
-// allows you to signal the availability of work from any thread. All other
-// methods are thread-hostile. Specifically:
-// StartWork()/StopWork() should not be called concurrently with themselves or
-// each other, and it is an error to call them while the worker is running on
-// a different thread.
-// The destructor may not be called if the worker is currently running
-// (regardless of the thread), but you can call StopWork() in a subclass's
-// destructor.
-class Worker : private MessageHandler {
- public:
- Worker();
-
- // Destroys this Worker, but it must have already been stopped via StopWork().
- ~Worker() override;
-
- // Attaches the worker to the current thread and begins processing work if not
- // already doing so.
- bool StartWork();
- // Stops processing work if currently doing so and detaches from the current
- // thread.
- bool StopWork();
-
- protected:
- // Signal that work is available to be done. May only be called within the
- // lifetime of a OnStart()/OnStop() pair.
- void HaveWork();
-
- // These must be implemented by a subclass.
- // Called on the worker thread to start working.
- virtual void OnStart() = 0;
- // Called on the worker thread when work has been signalled via HaveWork().
- virtual void OnHaveWork() = 0;
- // Called on the worker thread to stop working. Upon return, any pending
- // OnHaveWork() calls are cancelled.
- virtual void OnStop() = 0;
-
- private:
- // Inherited from MessageHandler.
- void OnMessage(Message* msg) override;
-
- // The thread that is currently doing the work.
- Thread *worker_thread_;
-
- RTC_DISALLOW_COPY_AND_ASSIGN(Worker);
-};
-
-} // namespace rtc
-
-#endif // WEBRTC_BASE_WORKER_H_
« no previous file with comments | « webrtc/base/base.gyp ('k') | webrtc/base/worker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698