Index: sandbox/win/src/eat_resolver.h |
diff --git a/sandbox/win/src/eat_resolver.h b/sandbox/win/src/eat_resolver.h |
index 5e4b6e83cc58ac20465486e3af7e318d84fab4d4..1d9d4306729b0cce1ccab8e57ff46a124d068516 100644 |
--- a/sandbox/win/src/eat_resolver.h |
+++ b/sandbox/win/src/eat_resolver.h |
@@ -15,25 +15,25 @@ namespace sandbox { |
class EatResolverThunk : public ResolverThunk { |
public: |
EatResolverThunk() : eat_entry_(NULL) {} |
- virtual ~EatResolverThunk() {} |
+ ~EatResolverThunk() override {} |
// Implementation of Resolver::Setup. |
- virtual NTSTATUS Setup(const void* target_module, |
- const void* interceptor_module, |
- const char* target_name, |
- const char* interceptor_name, |
- const void* interceptor_entry_point, |
- void* thunk_storage, |
- size_t storage_bytes, |
- size_t* storage_used); |
+ NTSTATUS Setup(const void* target_module, |
+ const void* interceptor_module, |
+ const char* target_name, |
+ const char* interceptor_name, |
+ const void* interceptor_entry_point, |
+ void* thunk_storage, |
+ size_t storage_bytes, |
+ size_t* storage_used) override; |
// Implementation of Resolver::ResolveTarget. |
- virtual NTSTATUS ResolveTarget(const void* module, |
- const char* function_name, |
- void** address); |
+ NTSTATUS ResolveTarget(const void* module, |
+ const char* function_name, |
+ void** address) override; |
// Implementation of Resolver::GetThunkSize. |
- virtual size_t GetThunkSize() const; |
+ size_t GetThunkSize() const override; |
private: |
// The entry to patch. |