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

Side by Side Diff: content/browser/renderer_host/pepper/pepper_gamepad_host.h

Issue 200873002: Gamepad API: add support for connection events (Closed) Base URL: https://chromium.googlesource.com/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
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_RENDERER_HOST_PEPPER_PEPPER_GAMEPAD_HOST_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_GAMEPAD_HOST_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_GAMEPAD_HOST_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_GAMEPAD_HOST_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "content/browser/gamepad/gamepad_consumer.h"
10 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
11 #include "ppapi/host/resource_host.h" 12 #include "ppapi/host/resource_host.h"
12 13
13 namespace ppapi { 14 namespace ppapi {
14 namespace host { 15 namespace host {
15 struct ReplyMessageContext; 16 struct ReplyMessageContext;
16 } 17 }
17 } 18 }
18 19
19 namespace content { 20 namespace content {
20 21
21 class BrowserPpapiHost; 22 class BrowserPpapiHost;
22 class GamepadService; 23 class GamepadService;
23 24
24 class CONTENT_EXPORT PepperGamepadHost : public ppapi::host::ResourceHost { 25 class CONTENT_EXPORT PepperGamepadHost :
26 public ppapi::host::ResourceHost,
27 public GamepadConsumer {
25 public: 28 public:
26 PepperGamepadHost(BrowserPpapiHost* host, 29 PepperGamepadHost(BrowserPpapiHost* host,
27 PP_Instance instance, 30 PP_Instance instance,
28 PP_Resource resource); 31 PP_Resource resource);
29 32
30 // Allows tests to specify a gamepad service to use rather than the global 33 // Allows tests to specify a gamepad service to use rather than the global
31 // singleton. The caller owns the gamepad_service pointer. 34 // singleton. The caller owns the gamepad_service pointer.
32 PepperGamepadHost(GamepadService* gamepad_service, 35 PepperGamepadHost(GamepadService* gamepad_service,
33 BrowserPpapiHost* host, 36 BrowserPpapiHost* host,
34 PP_Instance instance, 37 PP_Instance instance,
(...skipping 17 matching lines...) Expand all
52 bool is_started_; 55 bool is_started_;
53 56
54 base::WeakPtrFactory<PepperGamepadHost> weak_factory_; 57 base::WeakPtrFactory<PepperGamepadHost> weak_factory_;
55 58
56 DISALLOW_COPY_AND_ASSIGN(PepperGamepadHost); 59 DISALLOW_COPY_AND_ASSIGN(PepperGamepadHost);
57 }; 60 };
58 61
59 } // namespace content 62 } // namespace content
60 63
61 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_GAMEPAD_HOST_H_ 64 #endif // CONTENT_BROWSER_RENDERER_HOST_PEPPER_PEPPER_GAMEPAD_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698