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

Side by Side Diff: third_party/WebKit/Source/modules/gamepad/Gamepad.cpp

Issue 2300883003: Added Hand attribute to Gamepad (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gamepad_pose
Patch Set: Address haraken@'s feedback Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011, Google Inc. All rights reserved. 2 * Copyright (C) 2011, Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met: 5 * modification, are permitted provided that the following conditions are met:
6 * 6 *
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 m_pose = nullptr; 65 m_pose = nullptr;
66 return; 66 return;
67 } 67 }
68 68
69 if (!m_pose) 69 if (!m_pose)
70 m_pose = GamepadPose::create(); 70 m_pose = GamepadPose::create();
71 71
72 m_pose->setPose(pose); 72 m_pose->setPose(pose);
73 } 73 }
74 74
75 void Gamepad::setHand(const WebGamepadHand& hand)
76 {
77 switch (hand) {
78 case GamepadHandNone:
79 m_hand = "";
80 break;
81 case GamepadHandLeft:
82 m_hand = "left";
83 break;
84 case GamepadHandRight:
85 m_hand = "right";
86 break;
87 default:
88 NOTREACHED();
89 }
90 }
91
75 DEFINE_TRACE(Gamepad) 92 DEFINE_TRACE(Gamepad)
76 { 93 {
77 visitor->trace(m_buttons); 94 visitor->trace(m_buttons);
78 visitor->trace(m_pose); 95 visitor->trace(m_pose);
79 } 96 }
80 97
81 } // namespace blink 98 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/gamepad/Gamepad.h ('k') | third_party/WebKit/Source/modules/gamepad/Gamepad.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698