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

Unified Diff: content/browser/gamepad/gamepad_platform_data_fetcher_linux.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
Index: content/browser/gamepad/gamepad_platform_data_fetcher_linux.h
diff --git a/content/browser/gamepad/gamepad_platform_data_fetcher_linux.h b/content/browser/gamepad/gamepad_platform_data_fetcher_linux.h
index 916eda311f470678a5588cf65443740c547a3f00..f95e52fc0b2795b8b199e2679295d060ded20752 100644
--- a/content/browser/gamepad/gamepad_platform_data_fetcher_linux.h
+++ b/content/browser/gamepad/gamepad_platform_data_fetcher_linux.h
@@ -28,7 +28,7 @@ class GamepadPlatformDataFetcherLinux : public GamepadDataFetcher {
virtual ~GamepadPlatformDataFetcherLinux();
// GamepadDataFetcher implementation.
- virtual void GetGamepadData(WebKit::WebGamepads* pads,
+ virtual void GetGamepadData(blink::WebGamepads* pads,
bool devices_changed_hint) OVERRIDE;
private:
@@ -37,14 +37,14 @@ class GamepadPlatformDataFetcherLinux : public GamepadDataFetcher {
void ReadDeviceData(size_t index);
// File descriptors for the /dev/input/js* devices. -1 if not in use.
- int device_fds_[WebKit::WebGamepads::itemsLengthCap];
+ int device_fds_[blink::WebGamepads::itemsLengthCap];
// Functions to map from device data to standard layout, if available. May
// be null if no mapping is available.
- GamepadStandardMappingFunction mappers_[WebKit::WebGamepads::itemsLengthCap];
+ GamepadStandardMappingFunction mappers_[blink::WebGamepads::itemsLengthCap];
// Data that's returned to the consumer.
- WebKit::WebGamepads data_;
+ blink::WebGamepads data_;
scoped_ptr<UdevLinux> udev_;

Powered by Google App Engine
This is Rietveld 408576698