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

Unified Diff: content/browser/cocoa/system_hotkey_map_unittest.mm

Issue 637183002: Replace FINAL and OVERRIDE with their C++11 counterparts in content (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/cocoa/system_hotkey_map_unittest.mm
diff --git a/content/browser/cocoa/system_hotkey_map_unittest.mm b/content/browser/cocoa/system_hotkey_map_unittest.mm
index 5f088fb3b13a4b4591cf362bfb58a508410915be..6b2652fb42601c85fd637e1f003a2706aa109269 100644
--- a/content/browser/cocoa/system_hotkey_map_unittest.mm
+++ b/content/browser/cocoa/system_hotkey_map_unittest.mm
@@ -56,7 +56,7 @@ class SystemHotkeyMapTest : public ::testing::Test {
++count_;
}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
system_hotkey_dictionary_.reset([[NSMutableDictionary alloc] init]);
system_hotkey_inner_dictionary_.reset([[NSMutableDictionary alloc] init]);
[system_hotkey_dictionary_ setObject:system_hotkey_inner_dictionary_
@@ -64,7 +64,7 @@ class SystemHotkeyMapTest : public ::testing::Test {
count_ = 100;
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
system_hotkey_dictionary_.reset();
system_hotkey_inner_dictionary_.reset();
}
« no previous file with comments | « content/browser/child_process_security_policy_unittest.cc ('k') | content/browser/cross_site_transfer_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698