Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Unified Diff: gpu/command_buffer/service/error_state.cc

Issue 629913002: Replacing the OVERRIDE with override and FINAL with final in gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Included autogen python file for OVERRIDE Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/error_state.cc
diff --git a/gpu/command_buffer/service/error_state.cc b/gpu/command_buffer/service/error_state.cc
index ce65aa194d03ea79b548640560d6fa562ce5fac8..c71a159b3c7b1e402f7eb5eb8d51981e7edaf2f4 100644
--- a/gpu/command_buffer/service/error_state.cc
+++ b/gpu/command_buffer/service/error_state.cc
@@ -19,43 +19,43 @@ class ErrorStateImpl : public ErrorState {
explicit ErrorStateImpl(ErrorStateClient* client, Logger* logger);
virtual ~ErrorStateImpl();
- virtual uint32 GetGLError() OVERRIDE;
+ virtual uint32 GetGLError() override;
virtual void SetGLError(
const char* filename,
int line,
unsigned int error,
const char* function_name,
- const char* msg) OVERRIDE;
+ const char* msg) override;
virtual void SetGLErrorInvalidEnum(
const char* filename,
int line,
const char* function_name,
unsigned int value,
- const char* label) OVERRIDE;
+ const char* label) override;
virtual void SetGLErrorInvalidParami(
const char* filename,
int line,
unsigned int error,
const char* function_name,
unsigned int pname,
- int param) OVERRIDE;
+ int param) override;
virtual void SetGLErrorInvalidParamf(
const char* filename,
int line,
unsigned int error,
const char* function_name,
unsigned int pname,
- float param) OVERRIDE;
+ float param) override;
virtual unsigned int PeekGLError(
- const char* filename, int line, const char* function_name) OVERRIDE;
+ const char* filename, int line, const char* function_name) override;
virtual void CopyRealGLErrorsToWrapper(
- const char* filename, int line, const char* function_name) OVERRIDE;
+ const char* filename, int line, const char* function_name) override;
virtual void ClearRealGLErrors(
- const char* filename, int line, const char* function_name) OVERRIDE;
+ const char* filename, int line, const char* function_name) override;
private:
// The last error message set.
« no previous file with comments | « gpu/command_buffer/service/common_decoder_unittest.cc ('k') | gpu/command_buffer/service/feature_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698