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

Side by Side Diff: content/gpu/gpu_watchdog_thread.h

Issue 6463013: Add support for base::Closure in the MessageLoop. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/base
Patch Set: address will's comments. Created 9 years, 9 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 CONTENT_GPU_GPU_WATCHDOG_THREAD_H_ 5 #ifndef CONTENT_GPU_GPU_WATCHDOG_THREAD_H_
6 #define CONTENT_GPU_GPU_WATCHDOG_THREAD_H_ 6 #define CONTENT_GPU_GPU_WATCHDOG_THREAD_H_
7 7
8 #include "base/message_loop.h" 8 #include "base/message_loop.h"
9 #include "base/ref_counted.h" 9 #include "base/ref_counted.h"
10 #include "base/scoped_ptr.h" 10 #include "base/scoped_ptr.h"
(...skipping 14 matching lines...) Expand all
25 void PostAcknowledge(); 25 void PostAcknowledge();
26 26
27 protected: 27 protected:
28 virtual void Init(); 28 virtual void Init();
29 virtual void CleanUp(); 29 virtual void CleanUp();
30 30
31 private: 31 private:
32 32
33 // An object of this type intercepts the reception and completion of all tasks 33 // An object of this type intercepts the reception and completion of all tasks
34 // on the watched thread and checks whether the watchdog is armed. 34 // on the watched thread and checks whether the watchdog is armed.
35 class GpuWatchdogTaskObserver : public MessageLoop::TaskObserver { 35 class GpuWatchdogClosureObserver : public MessageLoop::ClosureObserver {
36 public: 36 public:
37 explicit GpuWatchdogTaskObserver(GpuWatchdogThread* watchdog); 37 explicit GpuWatchdogClosureObserver(GpuWatchdogThread* watchdog);
38 virtual ~GpuWatchdogTaskObserver(); 38 virtual ~GpuWatchdogClosureObserver();
39 39
40 // Implements MessageLoop::TaskObserver. 40 // Implements MessageLoop::ClosureObserver.
41 virtual void WillProcessTask(const Task* task); 41 virtual void WillProcessClosure(base::TimeTicks time_posted) OVERRIDE;
42 virtual void DidProcessTask(const Task* task); 42 virtual void DidProcessClosure(base::TimeTicks time_posted) OVERRIDE;
43 43
44 private: 44 private:
45 void CheckArmed(); 45 void CheckArmed();
46 GpuWatchdogThread* watchdog_; 46 GpuWatchdogThread* watchdog_;
47 }; 47 };
48 48
49 void OnAcknowledge(); 49 void OnAcknowledge();
50 void OnCheck(); 50 void OnCheck();
51 void DeliberatelyCrashingToRecoverFromHang(); 51 void DeliberatelyCrashingToRecoverFromHang();
52 void Disable(); 52 void Disable();
53 53
54 int64 GetWatchedThreadTime(); 54 int64 GetWatchedThreadTime();
55 55
56 MessageLoop* watched_message_loop_; 56 MessageLoop* watched_message_loop_;
57 int timeout_; 57 int timeout_;
58 volatile bool armed_; 58 volatile bool armed_;
59 GpuWatchdogTaskObserver task_observer_; 59 GpuWatchdogClosureObserver closure_observer_;
60 60
61 #if defined(OS_WIN) 61 #if defined(OS_WIN)
62 void* watched_thread_handle_; 62 void* watched_thread_handle_;
63 int64 arm_cpu_time_; 63 int64 arm_cpu_time_;
64 #endif 64 #endif
65 65
66 base::Time arm_absolute_time_; 66 base::Time arm_absolute_time_;
67 67
68 typedef ScopedRunnableMethodFactory<GpuWatchdogThread> MethodFactory; 68 typedef ScopedRunnableMethodFactory<GpuWatchdogThread> MethodFactory;
69 scoped_ptr<MethodFactory> method_factory_; 69 scoped_ptr<MethodFactory> method_factory_;
70 70
71 DISALLOW_COPY_AND_ASSIGN(GpuWatchdogThread); 71 DISALLOW_COPY_AND_ASSIGN(GpuWatchdogThread);
72 }; 72 };
73 73
74 #endif // CONTENT_GPU_GPU_WATCHDOG_THREAD_H_ 74 #endif // CONTENT_GPU_GPU_WATCHDOG_THREAD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698