Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: include/AdblockPlus/JsEngine.h

Issue 5797488346791936: Issue 1107 - Support notifications (Closed)
Patch Set: move MarkAsShown into Notification class and get rid of locale arg in Notification::GetTexts Created Jan. 22, 2015, 10:02 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-2015 Eyeo GmbH 3 * Copyright (C) 2006-2015 Eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 #endif 138 #endif
139 //@} 139 //@}
140 140
141 /** 141 /**
142 * Creates a new JavaScript object. 142 * Creates a new JavaScript object.
143 * @return New `JsValue` instance. 143 * @return New `JsValue` instance.
144 */ 144 */
145 JsValuePtr NewObject(); 145 JsValuePtr NewObject();
146 146
147 /** 147 /**
148 * Creates a new JavaScript array object.
149 * @return New `JsValue` instance.
150 */
151 JsValuePtr NewArray();
Wladimir Palant 2015/01/22 10:47:20 This change (and method Push) should be unnecessar
152
153 /**
148 * Creates a JavaScript function that invokes a C++ callback. 154 * Creates a JavaScript function that invokes a C++ callback.
149 * @param callback C++ callback to invoke. The callback receives a 155 * @param callback C++ callback to invoke. The callback receives a
150 * `v8::Arguments` object and can use `FromArguments()` to retrieve 156 * `v8::Arguments` object and can use `FromArguments()` to retrieve
151 * the current `JsEngine`. 157 * the current `JsEngine`.
152 * @return New `JsValue` instance. 158 * @return New `JsValue` instance.
153 */ 159 */
154 JsValuePtr NewCallback(v8::InvocationCallback callback); 160 JsValuePtr NewCallback(v8::InvocationCallback callback);
155 161
156 /** 162 /**
157 * Returns a `JsEngine` instance contained in a `v8::Arguments` object. 163 * Returns a `JsEngine` instance contained in a `v8::Arguments` object.
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 FileSystemPtr fileSystem; 223 FileSystemPtr fileSystem;
218 WebRequestPtr webRequest; 224 WebRequestPtr webRequest;
219 LogSystemPtr logSystem; 225 LogSystemPtr logSystem;
220 v8::Isolate* isolate; 226 v8::Isolate* isolate;
221 V8ValueHolder<v8::Context> context; 227 V8ValueHolder<v8::Context> context;
222 EventMap eventCallbacks; 228 EventMap eventCallbacks;
223 }; 229 };
224 } 230 }
225 231
226 #endif 232 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld