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

Unified Diff: content/browser/renderer_host/software_frame_manager_unittest.cc

Issue 616603004: Replacing the OVERRIDE with override and FINAL with final in content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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: content/browser/renderer_host/software_frame_manager_unittest.cc
diff --git a/content/browser/renderer_host/software_frame_manager_unittest.cc b/content/browser/renderer_host/software_frame_manager_unittest.cc
index e700f69f15565c2b3f1aa00a68b76836ad9e734d..8cbd0af47b5ad142405cffe235f161102db497c1 100644
--- a/content/browser/renderer_host/software_frame_manager_unittest.cc
+++ b/content/browser/renderer_host/software_frame_manager_unittest.cc
@@ -26,10 +26,10 @@ class FakeSoftwareFrameManagerClient : public SoftwareFrameManagerClient {
base::GetCurrentProcessHandle());
}
virtual void SoftwareFrameWasFreed(uint32 output_surface_id,
- unsigned frame_id) OVERRIDE {
+ unsigned frame_id) override {
freed_frames_.push_back(std::make_pair(output_surface_id, frame_id));
}
- virtual void ReleaseReferencesToSoftwareFrame() OVERRIDE {
+ virtual void ReleaseReferencesToSoftwareFrame() override {
++evicted_count_;
}

Powered by Google App Engine
This is Rietveld 408576698