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

Unified Diff: gpu/command_buffer/client/client_test_helper.h

Issue 1101013002: Update {virtual,override} to follow C++11 style in gpu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/client_test_helper.h
diff --git a/gpu/command_buffer/client/client_test_helper.h b/gpu/command_buffer/client/client_test_helper.h
index 46e343d2a5102f8141be8a0d8bb9a6bfcbd6bddc..c155bf1171758e91ef087bbab6abe2bc133b85e6 100644
--- a/gpu/command_buffer/client/client_test_helper.h
+++ b/gpu/command_buffer/client/client_test_helper.h
@@ -63,14 +63,14 @@ class MockCommandBufferBase : public CommandBufferServiceBase {
class MockClientCommandBuffer : public MockCommandBufferBase {
public:
MockClientCommandBuffer();
- virtual ~MockClientCommandBuffer();
+ ~MockClientCommandBuffer() override;
// This is so we can use all the gmock functions when Flush is called.
MOCK_METHOD0(OnFlush, void());
MOCK_METHOD1(DestroyTransferBuffer, void(int32 id));
- virtual void Flush(int32 put_offset) override;
- virtual void OrderingBarrier(int32 put_offset) override;
+ void Flush(int32 put_offset) override;
+ void OrderingBarrier(int32 put_offset) override;
void DelegateToFake();
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698