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

Side by Side Diff: content/browser/gamepad/gamepad_platform_data_fetcher_android.h

Issue 133943002: Gamepad API support for chrome on android (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Define the data fetcher that GamepadProvider will use for android port.
6 // (GamepadPlatformDataFetcher).
7
8 #ifndef CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_ANDROID_H_
9 #define CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_ANDROID_H_
10
11 #include <jni.h>
12
13 #include "base/android/jni_android.h"
14 #include "content/browser/gamepad/gamepad_data_fetcher.h"
15 #include "content/browser/gamepad/gamepad_provider.h"
16 #include "content/browser/gamepad/gamepad_standard_mappings.h"
17
18 #include "third_party/WebKit/public/platform/WebGamepads.h"
19
20 namespace content {
21 using blink::WebGamepad;
22 using blink::WebGamepads;
23
24 class GamepadPlatformDataFetcherAndroid : public GamepadDataFetcher {
25 public:
26 GamepadPlatformDataFetcherAndroid();
27 ~GamepadPlatformDataFetcherAndroid();
28
29 // Method for sending pause hints to the JNI interface. Runs on
30 // polling_thread_.
31 virtual void PauseHint(bool ispaused) OVERRIDE;
32
33 virtual void GetGamepadData(blink::WebGamepads* pads,
34 bool devices_changed_hint) OVERRIDE;
35
36 // Registers the JNI methods for GamepadsReader.
37 static bool RegisterGamepadPlatformDataFetcherAndroid(JNIEnv* env);
38
39 private:
40 // Data to fetch into.
41 blink::WebGamepads* gamepads_data_;
42
43 DISALLOW_COPY_AND_ASSIGN(GamepadPlatformDataFetcherAndroid);
44 };
45
46 } // namespace content
47
48 #endif // CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698