OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "ppapi/cpp/extensions/dev/alarms_dev.h" | 5 #include "ppapi/cpp/extensions/dev/alarms_dev_old.h" |
6 | 6 |
7 #include "ppapi/cpp/completion_callback.h" | 7 #include "ppapi/cpp/completion_callback.h" |
8 #include "ppapi/cpp/extensions/optional.h" | 8 #include "ppapi/cpp/extensions/optional.h" |
9 #include "ppapi/cpp/extensions/to_var_converter.h" | 9 #include "ppapi/cpp/extensions/to_var_converter.h" |
10 #include "ppapi/cpp/logging.h" | 10 #include "ppapi/cpp/logging.h" |
11 #include "ppapi/cpp/module_impl.h" | 11 #include "ppapi/cpp/module_impl.h" |
12 #include "ppapi/cpp/var_dictionary.h" | 12 #include "ppapi/cpp/var_dictionary.h" |
13 | 13 |
14 namespace pp { | 14 namespace pp { |
15 | 15 |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 OnAlarmEvent_Dev::~OnAlarmEvent_Dev() { | 170 OnAlarmEvent_Dev::~OnAlarmEvent_Dev() { |
171 } | 171 } |
172 | 172 |
173 void OnAlarmEvent_Dev::Callback(Alarm_Dev& alarm) { | 173 void OnAlarmEvent_Dev::Callback(Alarm_Dev& alarm) { |
174 listener_->OnAlarm(alarm); | 174 listener_->OnAlarm(alarm); |
175 } | 175 } |
176 | 176 |
177 } // namespace alarms | 177 } // namespace alarms |
178 } // namespace ext | 178 } // namespace ext |
179 } // namespace pp | 179 } // namespace pp |
OLD | NEW |