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

Unified Diff: win8/metro_driver/metro_driver_win7.cc

Issue 625073003: Replacing the OVERRIDE with override and FINAL with final in win8 folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Corrected patchset-1 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
« no previous file with comments | « win8/metro_driver/ime/text_store.h ('k') | win8/viewer/metro_viewer_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/metro_driver/metro_driver_win7.cc
diff --git a/win8/metro_driver/metro_driver_win7.cc b/win8/metro_driver/metro_driver_win7.cc
index 893cf25ef0e6e579aa00bfc1707e84a2b7716197..618cfb3d2564bc5e3a3257080abfd0ff9777c7e3 100644
--- a/win8/metro_driver/metro_driver_win7.cc
+++ b/win8/metro_driver/metro_driver_win7.cc
@@ -912,7 +912,7 @@ class CoreWindowEmulation
}
// InputHandler
- virtual bool HandleKeyboardMessage(const MSG& msg) OVERRIDE {
+ virtual bool HandleKeyboardMessage(const MSG& msg) override {
switch (msg.message) {
case WM_KEYDOWN:
case WM_KEYUP: {
@@ -943,7 +943,7 @@ class CoreWindowEmulation
return true;
}
- virtual bool HandleMouseMessage(const MSG& msg) OVERRIDE {
+ virtual bool HandleMouseMessage(const MSG& msg) override {
PointerEventHandler* handler = NULL;
mswr::ComPtr<winui::Core::IPointerEventArgs> event_args;
event_args = mswr::Make<MouseEvent>(msg);
« no previous file with comments | « win8/metro_driver/ime/text_store.h ('k') | win8/viewer/metro_viewer_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698