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

Side by Side 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.
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 | « src/AppInfoJsObject.h ('k') | src/GlobalJsObject.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <AdblockPlus/AppInfo.h>
2
3 #include "AppInfoJsObject.h"
4
5 using namespace AdblockPlus;
6
7 v8::Handle<v8::ObjectTemplate> AppInfoJsObject::Create(const AppInfo& appInfo)
8 {
9 v8::HandleScope handleScope;
10 const v8::Handle<v8::ObjectTemplate> infoObject = v8::ObjectTemplate::New();
11 infoObject->Set(v8::String::New("id"),
12 v8::String::New(appInfo.id.c_str()));
Wladimir Palant 2013/04/17 17:53:25 Utils::ToV8String()?
13 infoObject->Set(v8::String::New("version"),
14 v8::String::New(appInfo.version.c_str()));
15 infoObject->Set(v8::String::New("name"),
16 v8::String::New(appInfo.name.c_str()));
17 infoObject->Set(v8::String::New("platform"),
18 v8::String::New(appInfo.platform.c_str()));
19 return handleScope.Close(infoObject);
20 }
OLDNEW
« 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