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

Side by Side Diff: chrome/common/worker_thread_ticker.h

Issue 6142009: Upating the app, ceee, chrome, ipc, media, and net directories to use the correct lock.h file. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Unified patch updating all references to the new base/synchronization/lock.h 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/common/webmessageportchannel_impl.cc ('k') | chrome/common/worker_thread_ticker.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #ifndef CHROME_COMMON_WORKER_THREAD_TICKER_H_ 5 #ifndef CHROME_COMMON_WORKER_THREAD_TICKER_H_
6 #define CHROME_COMMON_WORKER_THREAD_TICKER_H_ 6 #define CHROME_COMMON_WORKER_THREAD_TICKER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/lock.h" 11 #include "base/synchronization/lock.h"
12 #include "base/threading/thread.h" 12 #include "base/threading/thread.h"
13 13
14 // This class provides the following functionality: 14 // This class provides the following functionality:
15 // It invokes a set of registered handlers at periodic intervals in 15 // It invokes a set of registered handlers at periodic intervals in
16 // the context of an arbitrary worker thread. 16 // the context of an arbitrary worker thread.
17 // The timer runs on a separate thread, so it will run even if the current 17 // The timer runs on a separate thread, so it will run even if the current
18 // thread is hung. Similarly, the callbacks will be called on a separate 18 // thread is hung. Similarly, the callbacks will be called on a separate
19 // thread so they won't block the main thread. 19 // thread so they won't block the main thread.
20 class WorkerThreadTicker { 20 class WorkerThreadTicker {
21 public: 21 public:
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 67
68 private: 68 private:
69 class TimerTask; 69 class TimerTask;
70 70
71 void ScheduleTimerTask(); 71 void ScheduleTimerTask();
72 72
73 // A list type that holds all registered callback interfaces 73 // A list type that holds all registered callback interfaces
74 typedef std::vector<Callback*> TickHandlerListType; 74 typedef std::vector<Callback*> TickHandlerListType;
75 75
76 // Lock to protect is_running_ and tick_handler_list_ 76 // Lock to protect is_running_ and tick_handler_list_
77 Lock lock_; 77 base::Lock lock_;
78 78
79 base::Thread timer_thread_; 79 base::Thread timer_thread_;
80 bool is_running_; 80 bool is_running_;
81 81
82 // The interval at which the callbacks are to be invoked 82 // The interval at which the callbacks are to be invoked
83 int tick_interval_; 83 int tick_interval_;
84 84
85 // A list that holds all registered callback interfaces 85 // A list that holds all registered callback interfaces
86 TickHandlerListType tick_handler_list_; 86 TickHandlerListType tick_handler_list_;
87 87
88 DISALLOW_COPY_AND_ASSIGN(WorkerThreadTicker); 88 DISALLOW_COPY_AND_ASSIGN(WorkerThreadTicker);
89 }; 89 };
90 90
91 #endif // CHROME_COMMON_WORKER_THREAD_TICKER_H_ 91 #endif // CHROME_COMMON_WORKER_THREAD_TICKER_H_
OLDNEW
« no previous file with comments | « chrome/common/webmessageportchannel_impl.cc ('k') | chrome/common/worker_thread_ticker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698