diff options
Diffstat (limited to 'content/gpu/gpu_watchdog_thread.h')
-rw-r--r-- | content/gpu/gpu_watchdog_thread.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/gpu/gpu_watchdog_thread.h b/content/gpu/gpu_watchdog_thread.h index 2572706e..8f3ee90 100644 --- a/content/gpu/gpu_watchdog_thread.h +++ b/content/gpu/gpu_watchdog_thread.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -55,16 +55,16 @@ class GpuWatchdogThread : public base::Thread, void DeliberatelyTerminateToRecoverFromHang(); void Disable(); - int64 GetWatchedThreadTime(); + base::TimeDelta GetWatchedThreadTime(); MessageLoop* watched_message_loop_; - int timeout_; + base::TimeDelta timeout_; volatile bool armed_; GpuWatchdogTaskObserver task_observer_; #if defined(OS_WIN) void* watched_thread_handle_; - int64 arm_cpu_time_; + base::TimeDelta arm_cpu_time_; #endif base::Time arm_absolute_time_; |