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

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

Issue 7778046: Update Native Client Authors to be Chromium Authors for the code moved from the (Closed) Base URL: svn://chrome-svn/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
1 // Copyright 2011 The Native Client Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can 2 // Use of this source code is governed by a BSD-style license that can
3 // be found in the LICENSE file. 3 // be found in the LICENSE file.
4 4
5 #include "native_client/src/shared/ppapi_proxy/input_event_data.h" 5 #include "native_client/src/shared/ppapi_proxy/input_event_data.h"
6 6
7 namespace ppapi_proxy { 7 namespace ppapi_proxy {
8 8
9 InputEventData::InputEventData() 9 InputEventData::InputEventData()
10 : event_type(PP_INPUTEVENT_TYPE_UNDEFINED), 10 : event_type(PP_INPUTEVENT_TYPE_UNDEFINED),
11 event_modifiers(0), 11 event_modifiers(0),
12 event_time_stamp(0.0), 12 event_time_stamp(0.0),
13 mouse_button(PP_INPUTEVENT_MOUSEBUTTON_NONE), 13 mouse_button(PP_INPUTEVENT_MOUSEBUTTON_NONE),
14 mouse_click_count(0), 14 mouse_click_count(0),
15 mouse_position(PP_MakePoint(0, 0)), 15 mouse_position(PP_MakePoint(0, 0)),
16 wheel_delta(PP_MakeFloatPoint(0.0f, 0.0f)), 16 wheel_delta(PP_MakeFloatPoint(0.0f, 0.0f)),
17 wheel_ticks(PP_MakeFloatPoint(0.0f, 0.0f)), 17 wheel_ticks(PP_MakeFloatPoint(0.0f, 0.0f)),
18 wheel_scroll_by_page(PP_FALSE), 18 wheel_scroll_by_page(PP_FALSE),
19 key_code(0) { 19 key_code(0) {
20 } 20 }
21 21
22 InputEventData::~InputEventData() { 22 InputEventData::~InputEventData() {
23 } 23 }
24 24
25 } // namespace ppapi_proxy 25 } // namespace ppapi_proxy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698