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

Side by Side Diff: remoting/client/input_handler.h

Issue 2861047: Refactor the client code. Move all x11-related code into X11View and create... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 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_INPUT_HANDLER_H_
6 #define REMOTING_CLIENT_INPUT_HANDLER_H_
7
8 #include "base/basictypes.h"
9 #include "base/task.h"
10
11 namespace remoting {
12
13 class InputHandler {
14 public:
15 InputHandler() {}
16 virtual ~InputHandler() {}
17
18 virtual void Initialize() = 0;
19
20 protected:
21 DISALLOW_COPY_AND_ASSIGN(InputHandler);
22 };
23
24 } // namespace remoting
25
26 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::InputHandler);
27
28 #endif // REMOTING_CLIENT_INPUT_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698