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

Unified Diff: src/AppInfoJsObject.cpp

Issue 29409580: Issue 5013 - Make parameter const ref when applicable. (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Rebased Created April 12, 2017, 8:49 a.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.cpp
===================================================================
--- a/src/AppInfoJsObject.cpp
+++ b/src/AppInfoJsObject.cpp
@@ -18,18 +18,17 @@
#include <AdblockPlus/AppInfo.h>
#include <AdblockPlus/JsValue.h>
#include "AppInfoJsObject.h"
#include "Utils.h"
using namespace AdblockPlus;
-JsValuePtr AppInfoJsObject::Setup(JsEnginePtr jsEngine, const AppInfo& appInfo,
- JsValuePtr obj)
+JsValuePtr AppInfoJsObject::Setup(const AppInfo& appInfo, const JsValuePtr& obj)
sergei 2017/04/12 13:34:31 Here and in other *JsObject files it seems it woul
hub 2017/04/12 13:51:35 I have that in another patch. But I can put it in
sergei 2017/04/12 13:57:24 Will it be possible to firstly commit that another
hub 2017/04/12 14:04:52 Actually this need a change to SetProperty to acce
hub 2017/04/13 08:13:45 Patch in question to apply after this is up for re
{
obj->SetProperty("version", appInfo.version);
obj->SetProperty("name", appInfo.name);
obj->SetProperty("application", appInfo.application);
obj->SetProperty("applicationVersion", appInfo.applicationVersion);
obj->SetProperty("locale", appInfo.locale);
obj->SetProperty("developmentBuild", appInfo.developmentBuild);
return obj;

Powered by Google App Engine
This is Rietveld