// Copyright (c) 2016 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #include "shell/browser/ui/x/event_disabler.h" #include namespace electron { EventDisabler::EventDisabler() {} EventDisabler::~EventDisabler() {} ui::EventRewriteStatus EventDisabler::RewriteEvent( const ui::Event& event, std::unique_ptr* rewritten_event) { return ui::EVENT_REWRITE_DISCARD; } ui::EventRewriteStatus EventDisabler::NextDispatchEvent( const ui::Event& last_event, std::unique_ptr* new_event) { return ui::EVENT_REWRITE_CONTINUE; } } // namespace electron