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

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

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/filesystem/LocalFileSystem.cpp ('k') | Source/modules/indexeddb/IDBCallbacks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/gamepad/NavigatorGamepad.cpp
diff --git a/Source/modules/gamepad/NavigatorGamepad.cpp b/Source/modules/gamepad/NavigatorGamepad.cpp
index 1e63a7dd664d39b7bad051f68c262c062496d4dc..f677c55d80edb8eee6d5a2db40e1eb2cf730b1fd 100644
--- a/Source/modules/gamepad/NavigatorGamepad.cpp
+++ b/Source/modules/gamepad/NavigatorGamepad.cpp
@@ -35,12 +35,12 @@ namespace WebCore {
static void sampleGamepads(GamepadList* into)
{
- WebKit::WebGamepads gamepads;
+ blink::WebGamepads gamepads;
- WebKit::Platform::current()->sampleGamepads(gamepads);
+ blink::Platform::current()->sampleGamepads(gamepads);
- for (unsigned i = 0; i < WebKit::WebGamepads::itemsLengthCap; ++i) {
- WebKit::WebGamepad& webGamepad = gamepads.items[i];
+ for (unsigned i = 0; i < blink::WebGamepads::itemsLengthCap; ++i) {
+ blink::WebGamepad& webGamepad = gamepads.items[i];
if (i < gamepads.length && webGamepad.connected) {
RefPtr<Gamepad> gamepad = into->item(i);
if (!gamepad)
« no previous file with comments | « Source/modules/filesystem/LocalFileSystem.cpp ('k') | Source/modules/indexeddb/IDBCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698