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

Side by Side Diff: ppapi/native_client/src/shared/ppapi_proxy/input_event_data.cc

Issue 7740013: Cloning a bunch of stuff from the native_client repository at r6528 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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
OLDNEW
(Empty)
1 // Copyright 2011 The Native Client Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can
3 // be found in the LICENSE file.
4
5 #include "native_client/src/shared/ppapi_proxy/input_event_data.h"
6
7 namespace ppapi_proxy {
8
9 InputEventData::InputEventData()
10 : event_type(PP_INPUTEVENT_TYPE_UNDEFINED),
11 event_modifiers(0),
12 event_time_stamp(0.0),
13 mouse_button(PP_INPUTEVENT_MOUSEBUTTON_NONE),
14 mouse_click_count(0),
15 mouse_position(PP_MakePoint(0, 0)),
16 wheel_delta(PP_MakeFloatPoint(0.0f, 0.0f)),
17 wheel_ticks(PP_MakeFloatPoint(0.0f, 0.0f)),
18 wheel_scroll_by_page(PP_FALSE),
19 key_code(0) {
20 }
21
22 InputEventData::~InputEventData() {
23 }
24
25 } // namespace ppapi_proxy
OLDNEW
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/input_event_data.h ('k') | ppapi/native_client/src/shared/ppapi_proxy/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698