OLD | NEW |
| (Empty) |
1 // Copyright 2007-2009 Google Inc. | |
2 // | |
3 // Licensed under the Apache License, Version 2.0 (the "License"); | |
4 // you may not use this file except in compliance with the License. | |
5 // You may obtain a copy of the License at | |
6 // | |
7 // http://www.apache.org/licenses/LICENSE-2.0 | |
8 // | |
9 // Unless required by applicable law or agreed to in writing, software | |
10 // distributed under the License is distributed on an "AS IS" BASIS, | |
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 // See the License for the specific language governing permissions and | |
13 // limitations under the License. | |
14 // ======================================================================== | |
15 | |
16 // ShutdownHandler monitors a shutdown event. | |
17 | |
18 #ifndef OMAHA_BASE_SHUTDOWN_HANDLER_H_ | |
19 #define OMAHA_BASE_SHUTDOWN_HANDLER_H_ | |
20 | |
21 #include <windows.h> | |
22 #include "base/basictypes.h" | |
23 #include "omaha/base/event_handler.h" | |
24 #include "omaha/base/scoped_any.h" | |
25 | |
26 namespace omaha { | |
27 | |
28 class Reactor; | |
29 class ShutdownCallback; | |
30 | |
31 class ShutdownHandler : public EventHandler { | |
32 public: | |
33 ShutdownHandler(); | |
34 ~ShutdownHandler(); | |
35 | |
36 HRESULT Initialize(Reactor* reactor, | |
37 ShutdownCallback* shutdown, | |
38 bool is_machine); | |
39 virtual void HandleEvent(HANDLE handle); | |
40 | |
41 private: | |
42 Reactor* reactor_; | |
43 scoped_event shutdown_event_; | |
44 ShutdownCallback* shutdown_callback_; | |
45 bool is_machine_; | |
46 DISALLOW_EVIL_CONSTRUCTORS(ShutdownHandler); | |
47 }; | |
48 | |
49 } // namespace omaha | |
50 | |
51 #endif // OMAHA_BASE_SHUTDOWN_HANDLER_H_ | |
OLD | NEW |