| Index: ash/gpu_support_stub.h
|
| diff --git a/ash/gpu_support_stub.h b/ash/gpu_support_stub.h
|
| index 59e063b70ac35fb7cfcaf14d1747163a1ad70629..d82c3140c210bb619d864b0ae5d9234d3976cb58 100644
|
| --- a/ash/gpu_support_stub.h
|
| +++ b/ash/gpu_support_stub.h
|
| @@ -15,13 +15,13 @@ namespace ash {
|
| class ASH_EXPORT GPUSupportStub : public GPUSupport {
|
| public:
|
| GPUSupportStub();
|
| - virtual ~GPUSupportStub();
|
| + ~GPUSupportStub() override;
|
|
|
| private:
|
| // Overridden from GPUSupport:
|
| - virtual bool IsPanelFittingDisabled() const override;
|
| - virtual void DisableGpuWatchdog() override;
|
| - virtual void GetGpuProcessHandles(
|
| + bool IsPanelFittingDisabled() const override;
|
| + void DisableGpuWatchdog() override;
|
| + void GetGpuProcessHandles(
|
| const GetGpuProcessHandlesCallback& callback) const override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(GPUSupportStub);
|
|
|