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/plugin/pepper_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_PLUGIN_PEPPER_INPUT_HANDLER_H_
6 #define REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_
7
8 #include "remoting/client/input_handler.h"
9
10 namespace remoting {
11
12 class PepperInputHandler : public InputHandler {
13 public:
14 PepperInputHandler();
15 virtual ~PepperInputHandler();
16
17 void Initialize();
18
19 private:
20 DISALLOW_COPY_AND_ASSIGN(PepperInputHandler);
21 };
22
23 } // namespace remoting
24
25 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::PepperInputHandler);
26
27 #endif // REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698