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

Unified Diff: Source/modules/gamepad/WebKitGamepadList.cpp

Issue 464353002: Cleanup blink:: prefix usage in Source/core/modules/[battery/*.cpp to indexeddb/*.cpp] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/gamepad/WebKitGamepad.cpp ('k') | Source/modules/indexeddb/IDBAny.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/gamepad/WebKitGamepadList.cpp
diff --git a/Source/modules/gamepad/WebKitGamepadList.cpp b/Source/modules/gamepad/WebKitGamepadList.cpp
index 7d2ccde2507af3a521c9cc6a04a02c74639d979b..ca81556a90a02bf260e50d14a6e1da5b24f72a74 100644
--- a/Source/modules/gamepad/WebKitGamepadList.cpp
+++ b/Source/modules/gamepad/WebKitGamepadList.cpp
@@ -14,7 +14,7 @@ WebKitGamepadList::WebKitGamepadList()
void WebKitGamepadList::set(unsigned index, WebKitGamepad* gamepad)
{
- if (index >= blink::WebGamepads::itemsLengthCap)
+ if (index >= WebGamepads::itemsLengthCap)
return;
m_items[index] = gamepad;
}
@@ -26,7 +26,7 @@ WebKitGamepad* WebKitGamepadList::item(unsigned index)
void WebKitGamepadList::trace(Visitor* visitor)
{
- for (unsigned index = 0; index < blink::WebGamepads::itemsLengthCap; index++) {
+ for (unsigned index = 0; index < WebGamepads::itemsLengthCap; index++) {
visitor->trace(m_items[index]);
}
}
« no previous file with comments | « Source/modules/gamepad/WebKitGamepad.cpp ('k') | Source/modules/indexeddb/IDBAny.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698