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

Unified Diff: base/test/signaling_task.h

Issue 8438034: Moving the SignalingTask class to base/test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Addressed comments Created 9 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
« no previous file with comments | « base/base.gyp ('k') | base/test/signaling_task.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/signaling_task.h
===================================================================
--- base/test/signaling_task.h (working copy)
+++ base/test/signaling_task.h (working copy)
@@ -4,15 +4,15 @@
// A simple callback that you can use to wait for events on a thread.
-#ifndef CHROME_TEST_BASE_SIGNALING_TASK_H_
-#define CHROME_TEST_BASE_SIGNALING_TASK_H_
+#ifndef BASE_TEST_SIGNALING_TASK_H_
+#define BASE_TEST_SIGNALING_TASK_H_
#pragma once
#include "base/task.h"
namespace base {
+
class WaitableEvent;
-}
class SignalingTask : public Task {
public:
@@ -23,6 +23,9 @@
private:
base::WaitableEvent* event_;
+ DISALLOW_COPY_AND_ASSIGN(SignalingTask);
};
-#endif // CHROME_TEST_BASE_SIGNALING_TASK_H_
+} // namespace base
+
+#endif // BASE_TEST_SIGNALING_TASK_H_
« no previous file with comments | « base/base.gyp ('k') | base/test/signaling_task.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698