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

Side by Side Diff: Source/modules/battery/BatteryManager.h

Issue 256593010: Gracefully support Navigator Gamepad methods in a detached state. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Have document supplements keep a reference to their document 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 BatteryManager_h 5 #ifndef BatteryManager_h
6 #define BatteryManager_h 6 #define BatteryManager_h
7 7
8 #include "core/dom/ContextLifecycleObserver.h" 8 #include "core/dom/ContextLifecycleObserver.h"
9 #include "core/dom/Document.h" 9 #include "core/dom/Document.h"
10 #include "core/events/EventTarget.h" 10 #include "core/events/EventTarget.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 virtual void suspend() OVERRIDE; 42 virtual void suspend() OVERRIDE;
43 virtual void resume() OVERRIDE; 43 virtual void resume() OVERRIDE;
44 virtual void stop() OVERRIDE; 44 virtual void stop() OVERRIDE;
45 45
46 // DeviceSensorEventController 46 // DeviceSensorEventController
47 virtual void registerWithDispatcher() OVERRIDE; 47 virtual void registerWithDispatcher() OVERRIDE;
48 virtual void unregisterWithDispatcher() OVERRIDE; 48 virtual void unregisterWithDispatcher() OVERRIDE;
49 virtual bool hasLastData() OVERRIDE; 49 virtual bool hasLastData() OVERRIDE;
50 virtual PassRefPtrWillBeRawPtr<Event> getLastEvent() OVERRIDE; 50 virtual PassRefPtrWillBeRawPtr<Event> getLastEvent() OVERRIDE;
51 virtual bool isNullEvent(Event*) OVERRIDE; 51 virtual bool isNullEvent(Event*) OVERRIDE;
52 virtual Document* document() OVERRIDE;
52 53
53 void trace(Visitor*) { } 54 void trace(Visitor*) { }
54 55
55 private: 56 private:
56 explicit BatteryManager(ExecutionContext*); 57 explicit BatteryManager(ExecutionContext*);
57 }; 58 };
58 59
59 } 60 }
60 61
61 #endif // BatteryManager_h 62 #endif // BatteryManager_h
62 63
OLDNEW
« no previous file with comments | « Source/core/frame/DeviceSensorEventController.cpp ('k') | Source/modules/battery/BatteryManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698