| Index: content/common/gpu/gpu_watchdog.h
|
| diff --git a/content/common/gpu/gpu_watchdog.h b/content/common/gpu/gpu_watchdog.h
|
| index 4d20b0d372f82742e4a15882c8e76556d7cc6b6d..4371938fd8e8a9187063cdf1df8268bdf65148e2 100644
|
| --- a/content/common/gpu/gpu_watchdog.h
|
| +++ b/content/common/gpu/gpu_watchdog.h
|
| @@ -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);
|
| };
|
|
|