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

Side by Side Diff: chrome/test/signaling_task.h

Issue 5977010: Move CancellationFlag and WaitableEvent to the synchronization subdirectory.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/live_sync/live_sync_test.cc ('k') | chrome/test/testing_browser_process.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // A simple callback that you can use to wait for events on a thread. 5 // A simple callback that you can use to wait for events on a thread.
6 6
7 #ifndef CHROME_TEST_SIGNALING_TASK_H_ 7 #ifndef CHROME_TEST_SIGNALING_TASK_H_
8 #define CHROME_TEST_SIGNALING_TASK_H_ 8 #define CHROME_TEST_SIGNALING_TASK_H_
9 #pragma once 9 #pragma once
10 10
11 #include "base/waitable_event.h" 11 #include "base/synchronization/waitable_event.h"
12 12
13 using base::WaitableEvent; 13 using base::WaitableEvent;
14 14
15 class SignalingTask : public Task { 15 class SignalingTask : public Task {
16 public: 16 public:
17 explicit SignalingTask(WaitableEvent* event) : event_(event) { 17 explicit SignalingTask(WaitableEvent* event) : event_(event) {
18 } 18 }
19 19
20 virtual void Run() { 20 virtual void Run() {
21 event_->Signal(); 21 event_->Signal();
22 } 22 }
23 23
24 private: 24 private:
25 WaitableEvent* event_; 25 WaitableEvent* event_;
26 }; 26 };
27 27
28 #endif // CHROME_TEST_SIGNALING_TASK_H_ 28 #endif // CHROME_TEST_SIGNALING_TASK_H_
OLDNEW
« no previous file with comments | « chrome/test/live_sync/live_sync_test.cc ('k') | chrome/test/testing_browser_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698