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

Unified Diff: src/AppInfoJsObject.cpp

Issue 10198022: Pass application data into libadblockplus (Closed)
Patch Set: Merged upstream, addressed issues, renamed AppInfo fields Created April 17, 2013, 2:47 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/AppInfoJsObject.h ('k') | src/GlobalJsObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/AppInfoJsObject.cpp
===================================================================
new file mode 100644
--- /dev/null
+++ b/src/AppInfoJsObject.cpp
@@ -0,0 +1,20 @@
+#include <AdblockPlus/AppInfo.h>
+
+#include "AppInfoJsObject.h"
+
+using namespace AdblockPlus;
+
+v8::Handle<v8::ObjectTemplate> AppInfoJsObject::Create(const AppInfo& appInfo)
+{
+ v8::HandleScope handleScope;
+ const v8::Handle<v8::ObjectTemplate> infoObject = v8::ObjectTemplate::New();
+ infoObject->Set(v8::String::New("id"),
+ v8::String::New(appInfo.id.c_str()));
Wladimir Palant 2013/04/17 17:53:25 Utils::ToV8String()?
+ infoObject->Set(v8::String::New("version"),
+ v8::String::New(appInfo.version.c_str()));
+ infoObject->Set(v8::String::New("name"),
+ v8::String::New(appInfo.name.c_str()));
+ infoObject->Set(v8::String::New("platform"),
+ v8::String::New(appInfo.platform.c_str()));
+ return handleScope.Close(infoObject);
+}
« no previous file with comments | « src/AppInfoJsObject.h ('k') | src/GlobalJsObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld