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

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

Issue 29433639: Noissue - Remove extraneous comment marker (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Created May 8, 2017, 2:55 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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-2017 eyeo GmbH 3 * Copyright (C) 2006-2017 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 270
271 /** 271 /**
272 * Sets the `FileSystem` implementation used for all file I/O. 272 * Sets the `FileSystem` implementation used for all file I/O.
273 * Setting this is optional, the engine will use a `DefaultFileSystem` 273 * Setting this is optional, the engine will use a `DefaultFileSystem`
274 * instance by default, which might be sufficient. 274 * instance by default, which might be sufficient.
275 * @param The `FileSystem` instance to use. 275 * @param The `FileSystem` instance to use.
276 */ 276 */
277 void SetFileSystem(const FileSystemPtr& val); 277 void SetFileSystem(const FileSystemPtr& val);
278 278
279 /** 279 /**
280 /**
281 * Sets the `WebRequest` implementation used for XMLHttpRequests. 280 * Sets the `WebRequest` implementation used for XMLHttpRequests.
282 * Setting this is optional, the engine will use a `DefaultWebRequest` 281 * Setting this is optional, the engine will use a `DefaultWebRequest`
283 * instance by default, which might be sufficient. 282 * instance by default, which might be sufficient.
284 * @param The `WebRequest` instance to use. 283 * @param The `WebRequest` instance to use.
285 */ 284 */
286 void SetWebRequest(const WebRequestSharedPtr& val); 285 void SetWebRequest(const WebRequestSharedPtr& val);
287 286
288 /** 287 /**
289 * @see `SetLogSystem()`. 288 * @see `SetLogSystem()`.
290 */ 289 */
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 std::mutex eventCallbacksMutex; 331 std::mutex eventCallbacksMutex;
333 JsWeakValuesLists jsWeakValuesLists; 332 JsWeakValuesLists jsWeakValuesLists;
334 std::mutex jsWeakValuesListsMutex; 333 std::mutex jsWeakValuesListsMutex;
335 TimerPtr timer; 334 TimerPtr timer;
336 WebRequestPtr webRequest; 335 WebRequestPtr webRequest;
337 WebRequestSharedPtr webRequestLegacy; 336 WebRequestSharedPtr webRequestLegacy;
338 }; 337 };
339 } 338 }
340 339
341 #endif 340 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld