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

Unified Diff: third_party/WebKit/Source/platform/scheduler/base/real_time_domain.h

Issue 2798563003: [scheduler] Add TaskQueue::Observer (Closed)
Patch Set: add todo for test timings & wake_up -> wake-up in comments Created 3 years, 8 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
Index: third_party/WebKit/Source/platform/scheduler/base/real_time_domain.h
diff --git a/third_party/WebKit/Source/platform/scheduler/base/real_time_domain.h b/third_party/WebKit/Source/platform/scheduler/base/real_time_domain.h
index 1457204c73f1f7e46893eda22dd7649283686be5..872cde9e76e2930606c68056041eebbeef013609 100644
--- a/third_party/WebKit/Source/platform/scheduler/base/real_time_domain.h
+++ b/third_party/WebKit/Source/platform/scheduler/base/real_time_domain.h
@@ -17,7 +17,6 @@ namespace scheduler {
class BLINK_PLATFORM_EXPORT RealTimeDomain : public TimeDomain {
public:
explicit RealTimeDomain(const char* tracing_category);
- RealTimeDomain(TimeDomain::Observer* observer, const char* tracing_category);
~RealTimeDomain() override;
// TimeDomain implementation:
@@ -29,8 +28,8 @@ class BLINK_PLATFORM_EXPORT RealTimeDomain : public TimeDomain {
protected:
void OnRegisterWithTaskQueueManager(
TaskQueueManager* task_queue_manager) override;
- void RequestWakeupAt(base::TimeTicks now, base::TimeTicks run_time) override;
- void CancelWakeupAt(base::TimeTicks run_time) override;
+ void RequestWakeUpAt(base::TimeTicks now, base::TimeTicks run_time) override;
+ void CancelWakeUpAt(base::TimeTicks run_time) override;
void AsValueIntoInternal(
base::trace_event::TracedValue* state) const override;

Powered by Google App Engine
This is Rietveld 408576698