#include "remoting/client/input/normalizing_input_filter_mac.h"
#include <stdint.h>
#include "remoting/proto/event.pb.h"
#include "remoting/protocol/protocol_mock_objects.h"
#include "remoting/protocol/test_event_matchers.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/events/keycodes/dom/dom_code.h"
InSequence;
InputStub;
KeyEvent;
MockInputStub;
MouseEvent;
EqualsKeyEventWithNumLock;
namespace remoting {
namespace {
KeyEvent MakeKeyEvent(ui::DomCode keycode, bool pressed) { … }
}
TEST(NormalizingInputFilterMacTest, CapsLock) { … }
TEST(NormalizingInputFilterMacTest, NoInjection) { … }
TEST(NormalizingInputFilterMacTest, CmdKey) { … }
TEST(NormalizingInputFilterMacTest, SpecialKeys) { … }
TEST(NormalizingInputFilterMacTest, MultipleCmdKeys) { … }
TEST(NormalizingInputFilterMacTest, BeforeCmdKey) { … }
}