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

Side by Side Diff: ppapi/cpp/extensions/dev/alarms_dev_old.cc

Issue 60173003: Draft: apps APIs in Pepper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove PP_ArrayOutput from array structs. Created 7 years 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 | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698