- add sources.
[platform/framework/web/crosswalk.git] / src / remoting / client / plugin / normalizing_input_filter.h
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_CLIENT_PLUGIN_NORMALIZING_INPUT_FILTER_H_
6 #define REMOTING_CLIENT_PLUGIN_NORMALIZING_INPUT_FILTER_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "remoting/protocol/input_filter.h"
10
11 namespace remoting {
12
13 // Returns an InputFilter which re-writes input events to work around
14 // platform-specific behaviours. If no re-writing is required then a
15 // pass-through InputFilter is returned.
16 scoped_ptr<protocol::InputFilter> CreateNormalizingInputFilter(
17     protocol::InputStub* input_stub);
18
19 }  // namespace remoting
20
21 #endif  // REMOTING_CLIENT_PLUGIN_NORMALIZING_INPUT_FILTER_H_