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

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

Issue 466813003: Cleanup namespace usage in Source/core/modules/[battery/* to indexeddb/*] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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.h ('k') | Source/modules/indexeddb/IDBAny.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/gamepad/WebKitGamepadList.h
diff --git a/Source/modules/gamepad/WebKitGamepadList.h b/Source/modules/gamepad/WebKitGamepadList.h
index 257adbbe6e5b6d51fb9251664da0abfa834b70f7..c3d3e0650f6d08a125391fdeec0a2b4196b0c003 100644
--- a/Source/modules/gamepad/WebKitGamepadList.h
+++ b/Source/modules/gamepad/WebKitGamepadList.h
@@ -21,13 +21,13 @@ public:
void set(unsigned index, WebKitGamepad*);
WebKitGamepad* item(unsigned index);
- unsigned length() const { return blink::WebGamepads::itemsLengthCap; }
+ unsigned length() const { return WebGamepads::itemsLengthCap; }
void trace(Visitor*);
private:
WebKitGamepadList();
- Member<WebKitGamepad> m_items[blink::WebGamepads::itemsLengthCap];
+ Member<WebKitGamepad> m_items[WebGamepads::itemsLengthCap];
};
} // namespace blink
« no previous file with comments | « Source/modules/gamepad/WebKitGamepad.h ('k') | Source/modules/indexeddb/IDBAny.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698