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

Side by Side Diff: ppapi/api/extensions/dev/ppb_ext_events_dev.idl

Issue 13080002: Apps V2 in Pepper: introduce singleton resource ExtensionsCommon. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 8 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 | 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 5
6 label Chrome { 6 label Chrome {
7 M27 = 0.1 7 M27 = 0.1
8 }; 8 };
9 9
10 /** 10 /**
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 const char* event_name, 78 const char* event_name,
79 PP_Ext_GenericFuncType func, 79 PP_Ext_GenericFuncType func,
80 void* user_data) { 80 void* user_data) {
81 struct PP_Ext_EventListener listener; 81 struct PP_Ext_EventListener listener;
82 listener.event_name = event_name; 82 listener.event_name = event_name;
83 listener.func = func; 83 listener.func = func;
84 listener.user_data = user_data; 84 listener.user_data = user_data;
85 return listener; 85 return listener;
86 } 86 }
87 #endinl 87 #endinl
OLDNEW
« no previous file with comments | « ppapi/api/extensions/dev/ppb_ext_alarms_dev.idl ('k') | ppapi/c/extensions/dev/ppb_alarms_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698