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

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

Issue 372053004: Fix PepperGamepadHostTest.WaitForReply (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 6 years, 5 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
« no previous file with comments | « no previous file | content/browser/gamepad/gamepad_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CONTENT_BROWSER_GAMEPAD_GAMEPAD_SERVICE_H 5 #ifndef CONTENT_BROWSER_GAMEPAD_GAMEPAD_SERVICE_H
6 #define CONTENT_BROWSER_GAMEPAD_GAMEPAD_SERVICE_H 6 #define CONTENT_BROWSER_GAMEPAD_GAMEPAD_SERVICE_H
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 friend class GamepadServiceTest; 85 friend class GamepadServiceTest;
86 86
87 GamepadService(); 87 GamepadService();
88 88
89 // Constructor for testing. This specifies the data fetcher to use for a 89 // Constructor for testing. This specifies the data fetcher to use for a
90 // provider, bypassing the default platform one. 90 // provider, bypassing the default platform one.
91 GamepadService(scoped_ptr<GamepadDataFetcher> fetcher); 91 GamepadService(scoped_ptr<GamepadDataFetcher> fetcher);
92 92
93 virtual ~GamepadService(); 93 virtual ~GamepadService();
94 94
95 void SetInstance(); 95 static void SetInstance(GamepadService*);
96 96
97 void OnUserGesture(); 97 void OnUserGesture();
98 98
99 struct ConsumerInfo { 99 struct ConsumerInfo {
100 ConsumerInfo(GamepadConsumer* consumer) 100 ConsumerInfo(GamepadConsumer* consumer)
101 : consumer(consumer), 101 : consumer(consumer),
102 did_observe_user_gesture(false) { 102 did_observe_user_gesture(false) {
103 } 103 }
104 104
105 bool operator<(const ConsumerInfo& other) const { 105 bool operator<(const ConsumerInfo& other) const {
(...skipping 15 matching lines...) Expand all
121 int num_active_consumers_; 121 int num_active_consumers_;
122 122
123 bool gesture_callback_pending_; 123 bool gesture_callback_pending_;
124 124
125 DISALLOW_COPY_AND_ASSIGN(GamepadService); 125 DISALLOW_COPY_AND_ASSIGN(GamepadService);
126 }; 126 };
127 127
128 } // namespace content 128 } // namespace content
129 129
130 #endif // CONTENT_BROWSER_GAMEPAD_GAMEPAD_SERVICE_H_ 130 #endif // CONTENT_BROWSER_GAMEPAD_GAMEPAD_SERVICE_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/gamepad/gamepad_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698