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

Unified Diff: src/ConsoleJsObject.cpp

Issue 29409580: Issue 5013 - Make parameter const ref when applicable. (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: the input stream is no longer const. Created April 12, 2017, 3:08 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
« no previous file with comments | « src/ConsoleJsObject.h ('k') | src/DefaultFileSystem.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ConsoleJsObject.cpp
===================================================================
--- a/src/ConsoleJsObject.cpp
+++ b/src/ConsoleJsObject.cpp
@@ -100,18 +100,18 @@
AdblockPlus::LogSystemPtr callback = jsEngine->GetLogSystem();
(*callback)(AdblockPlus::LogSystem::LOG_LEVEL_TRACE, traceback.str(), "");
return v8::Undefined();
}
}
AdblockPlus::JsValuePtr AdblockPlus::ConsoleJsObject::Setup(
- AdblockPlus::JsEnginePtr jsEngine, AdblockPlus::JsValuePtr obj)
+ AdblockPlus::JsEngine& jsEngine, const AdblockPlus::JsValuePtr& obj)
{
- obj->SetProperty("log", jsEngine->NewCallback(::LogCallback));
- obj->SetProperty("debug", jsEngine->NewCallback(::DebugCallback));
- obj->SetProperty("info", jsEngine->NewCallback(::InfoCallback));
- obj->SetProperty("warn", jsEngine->NewCallback(::WarnCallback));
- obj->SetProperty("error", jsEngine->NewCallback(::ErrorCallback));
- obj->SetProperty("trace", jsEngine->NewCallback(::TraceCallback));
+ obj->SetProperty("log", jsEngine.NewCallback(::LogCallback));
+ obj->SetProperty("debug", jsEngine.NewCallback(::DebugCallback));
+ obj->SetProperty("info", jsEngine.NewCallback(::InfoCallback));
+ obj->SetProperty("warn", jsEngine.NewCallback(::WarnCallback));
+ obj->SetProperty("error", jsEngine.NewCallback(::ErrorCallback));
+ obj->SetProperty("trace", jsEngine.NewCallback(::TraceCallback));
return obj;
}
« no previous file with comments | « src/ConsoleJsObject.h ('k') | src/DefaultFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld