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

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

Issue 292763004: Revert of Gamepad API support for chrome on android (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 6 years, 7 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Define the default data fetcher that GamepadProvider will use if none is 5 // Define the default data fetcher that GamepadProvider will use if none is
6 // supplied. (GamepadPlatformDataFetcher). 6 // supplied. (GamepadPlatformDataFetcher).
7 7
8 #ifndef CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_ 8 #ifndef CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_
9 #define CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_ 9 #define CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "content/browser/gamepad/gamepad_data_fetcher.h" 13 #include "content/browser/gamepad/gamepad_data_fetcher.h"
14 14
15 #if defined(OS_ANDROID) 15 #if defined(OS_WIN)
16 #include "content/browser/gamepad/gamepad_platform_data_fetcher_android.h"
17 #elif defined(OS_WIN)
18 #include "content/browser/gamepad/gamepad_platform_data_fetcher_win.h" 16 #include "content/browser/gamepad/gamepad_platform_data_fetcher_win.h"
19 #elif defined(OS_MACOSX) 17 #elif defined(OS_MACOSX)
20 #include "content/browser/gamepad/gamepad_platform_data_fetcher_mac.h" 18 #include "content/browser/gamepad/gamepad_platform_data_fetcher_mac.h"
21 #elif defined(OS_LINUX) 19 #elif defined(OS_LINUX)
22 #include "content/browser/gamepad/gamepad_platform_data_fetcher_linux.h" 20 #include "content/browser/gamepad/gamepad_platform_data_fetcher_linux.h"
23 #endif 21 #endif
24 22
25 namespace content { 23 namespace content {
26 24
27 #if defined(OS_ANDROID) 25 #if defined(OS_WIN)
28
29 typedef GamepadPlatformDataFetcherAndroid GamepadPlatformDataFetcher;
30
31 #elif defined(OS_WIN)
32 26
33 typedef GamepadPlatformDataFetcherWin GamepadPlatformDataFetcher; 27 typedef GamepadPlatformDataFetcherWin GamepadPlatformDataFetcher;
34 28
35 #elif defined(OS_MACOSX) 29 #elif defined(OS_MACOSX)
36 30
37 typedef GamepadPlatformDataFetcherMac GamepadPlatformDataFetcher; 31 typedef GamepadPlatformDataFetcherMac GamepadPlatformDataFetcher;
38 32
39 #elif defined(OS_LINUX) && defined(USE_UDEV) 33 #elif defined(OS_LINUX) && defined(USE_UDEV)
40 34
41 typedef GamepadPlatformDataFetcherLinux GamepadPlatformDataFetcher; 35 typedef GamepadPlatformDataFetcherLinux GamepadPlatformDataFetcher;
(...skipping 10 matching lines...) Expand all
52 private: 46 private:
53 DISALLOW_COPY_AND_ASSIGN(GamepadDataFetcherEmpty); 47 DISALLOW_COPY_AND_ASSIGN(GamepadDataFetcherEmpty);
54 }; 48 };
55 typedef GamepadDataFetcherEmpty GamepadPlatformDataFetcher; 49 typedef GamepadDataFetcherEmpty GamepadPlatformDataFetcher;
56 50
57 #endif 51 #endif
58 52
59 } // namespace content 53 } // namespace content
60 54
61 #endif // CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_ 55 #endif // CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_
OLDNEW
« no previous file with comments | « content/browser/gamepad/canonical_button_index_list.h ('k') | content/browser/gamepad/gamepad_platform_data_fetcher_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698