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

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

Issue 7395005: Proxy PPB_Input_Event, PPP_Input_Event, and associated IFs. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: copyright headers Created 9 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
« no previous file with comments | « src/shared/ppapi_proxy/input_event_data.h ('k') | src/shared/ppapi_proxy/nacl.scons » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 | « src/shared/ppapi_proxy/input_event_data.h ('k') | src/shared/ppapi_proxy/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698