summaryrefslogtreecommitdiff
path: root/chromium/content/common/gpu/gpu_watchdog.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/common/gpu/gpu_watchdog.h')
-rw-r--r--chromium/content/common/gpu/gpu_watchdog.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/content/common/gpu/gpu_watchdog.h b/chromium/content/common/gpu/gpu_watchdog.h
deleted file mode 100644
index 069aeb72737..00000000000
--- a/chromium/content/common/gpu/gpu_watchdog.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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.
-
-#ifndef CONTENT_COMMON_GPU_GPU_WATCHDOG_H_
-#define CONTENT_COMMON_GPU_GPU_WATCHDOG_H_
-
-#include "base/macros.h"
-
-namespace content {
-
-// Interface for objects that monitor the a GPUProcessor's progress. The
-// GPUProcessor will regularly invoke CheckArmed.
-class GpuWatchdog {
- public:
- virtual void CheckArmed() = 0;
-
- protected:
- GpuWatchdog() {}
- virtual ~GpuWatchdog() {};
-
- private:
- DISALLOW_COPY_AND_ASSIGN(GpuWatchdog);
-};
-
-} // namespace content
-
-#endif // CONTENT_COMMON_GPU_GPU_WATCHDOG_H_