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

Unified Diff: ui/views/widget/desktop_aura/x11_desktop_handler.cc

Issue 666673005: Explicitly coerce PostDispatchAction to uint32_t in DispatchEvent() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ui_enums
Patch Set: sigh. Windows. 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: ui/views/widget/desktop_aura/x11_desktop_handler.cc
diff --git a/ui/views/widget/desktop_aura/x11_desktop_handler.cc b/ui/views/widget/desktop_aura/x11_desktop_handler.cc
index ee90cbc5fae046d7aeee9284c7adbb84b0e58f4c..2cab496472578be423fe99ff853f8c069e9f6bcd 100644
--- a/ui/views/widget/desktop_aura/x11_desktop_handler.cc
+++ b/ui/views/widget/desktop_aura/x11_desktop_handler.cc
@@ -182,7 +182,7 @@ uint32_t X11DesktopHandler::DispatchEvent(const ui::PlatformEvent& event) {
NOTREACHED();
}
- return ui::POST_DISPATCH_NONE;
+ return ui::kPostDispatchNone;
}
void X11DesktopHandler::OnWindowInitialized(aura::Window* window) {

Powered by Google App Engine
This is Rietveld 408576698