- add sources.
[platform/framework/web/crosswalk.git] / src / remoting / client / plugin / normalizing_input_filter.cc
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 #include "remoting/client/plugin/normalizing_input_filter.h"
6
7 #include "remoting/protocol/input_filter.h"
8
9 namespace remoting {
10
11 using protocol::InputFilter;
12 using protocol::InputStub;
13
14 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
15 scoped_ptr<InputFilter> CreateNormalizingInputFilter(InputStub* input_stub) {
16   return scoped_ptr<InputFilter>(new InputFilter(input_stub));
17 }
18 #endif // !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
19
20 }