summaryrefslogtreecommitdiffstats
path: root/content/common/gpu/gpu_watchdog.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/gpu/gpu_watchdog.h')
-rw-r--r--content/common/gpu/gpu_watchdog.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/content/common/gpu/gpu_watchdog.h b/content/common/gpu/gpu_watchdog.h
index 4d20b0d..bc421ce 100644
--- a/content/common/gpu/gpu_watchdog.h
+++ b/content/common/gpu/gpu_watchdog.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.
@@ -9,14 +9,12 @@
// GPUProcessor will regularly invoke CheckArmed.
class GpuWatchdog {
public:
- GpuWatchdog() {
- }
-
- virtual ~GpuWatchdog() {
- };
-
virtual void CheckArmed() = 0;
+ protected:
+ GpuWatchdog() {}
+ virtual ~GpuWatchdog() {};
+
private:
DISALLOW_COPY_AND_ASSIGN(GpuWatchdog);
};