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

Unified Diff: src/AppInfoJsObject.h

Issue 29409580: Issue 5013 - Make parameter const ref when applicable. (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Created April 11, 2017, 1:58 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/AppInfoJsObject.h
===================================================================
--- a/src/AppInfoJsObject.h
+++ b/src/AppInfoJsObject.h
@@ -22,13 +22,13 @@
#include <AdblockPlus/JsEngine.h>
namespace AdblockPlus
{
struct AppInfo;
namespace AppInfoJsObject
{
- JsValuePtr Setup(JsEnginePtr jsEngine, const AppInfo& appInfo, JsValuePtr obj);
+ JsValuePtr Setup(const JsEnginePtr& jsEngine, const AppInfo& appInfo, const JsValuePtr& obj);
}
}
#endif

Powered by Google App Engine
This is Rietveld