| Index: third_party/WebKit/Source/modules/gamepad/GamepadList.cpp
|
| diff --git a/third_party/WebKit/Source/modules/gamepad/GamepadList.cpp b/third_party/WebKit/Source/modules/gamepad/GamepadList.cpp
|
| index 732b60a4a2dc5b0f39984d7a32fb9ff24a4e8013..5e358288e99eb5e8cc001d817d77ee9d4b6e3a70 100644
|
| --- a/third_party/WebKit/Source/modules/gamepad/GamepadList.cpp
|
| +++ b/third_party/WebKit/Source/modules/gamepad/GamepadList.cpp
|
| @@ -30,7 +30,7 @@ namespace blink {
|
| GamepadList::GamepadList() {}
|
|
|
| void GamepadList::Set(unsigned index, Gamepad* gamepad) {
|
| - if (index >= WebGamepads::kItemsLengthCap)
|
| + if (index >= device::Gamepads::kItemsLengthCap)
|
| return;
|
| items_[index] = gamepad;
|
| }
|
| @@ -40,7 +40,7 @@ Gamepad* GamepadList::item(unsigned index) {
|
| }
|
|
|
| DEFINE_TRACE(GamepadList) {
|
| - for (unsigned index = 0; index < WebGamepads::kItemsLengthCap; index++) {
|
| + for (unsigned index = 0; index < device::Gamepads::kItemsLengthCap; index++) {
|
| visitor->Trace(items_[index]);
|
| }
|
| }
|
|
|