Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_PROGRESS_REPORTER_STUB_H_ | |
| 6 #define GPU_COMMAND_BUFFER_SERVICE_PROGRESS_REPORTER_STUB_H_ | |
| 7 | |
| 8 #include "gpu/command_buffer/service/progress_reporter.h" | |
| 9 | |
| 10 namespace gpu { | |
| 11 namespace gles2 { | |
| 12 | |
| 13 // A no-op ProgressReporter implementation. | |
| 14 class ProgressReporterStub : public ProgressReporter { | |
|
ericrk
2016/10/05 18:07:32
I sort of hate making this its own file (so small)
| |
| 15 public: | |
| 16 void ReportProgress() override {} | |
| 17 }; | |
| 18 | |
| 19 } // namespace gles2 | |
| 20 } // namespace gpu | |
| 21 | |
| 22 #endif // GPU_COMMAND_BUFFER_SERVICE_PROGRESS_REPORTER_STUB_H_ | |
| OLD | NEW |