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

Delta Between Two Patch Sets: include/AdblockPlus/AppInfo.h

Issue 10198022: Pass application data into libadblockplus (Closed)
Left Patch Set: Created April 12, 2013, 1:23 p.m.
Right 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 #ifndef ADBLOCK_PLUS_APP_INFO_H 1 #ifndef ADBLOCK_PLUS_APP_INFO_H
2 #define ADBLOCK_PLUS_APP_INFO_H 2 #define ADBLOCK_PLUS_APP_INFO_H
3 3
4 #include <string> 4 #include <string>
5 5
6 namespace AdblockPlus 6 namespace AdblockPlus
7 { 7 {
8 struct AppInfo 8 struct AppInfo
Felix Dahlke 2013/04/12 13:32:27 I'm not happy with the property names here, sugges
Oleksandr 2013/04/12 14:14:52 Looks fine to me as it is. On 2013/04/12 13:32:27
9 { 9 {
10 std::string addonId; 10 std::string id;
11 std::string addonVersion; 11 std::string version;
12 std::string addonRoot; 12 std::string name;
Wladimir Palant 2013/04/15 10:56:00 addonRoot is probably unnecessary - it is only use
13 std::string addonName; 13 std::string platform;
14 std::string application;
Wladimir Palant 2013/04/15 10:56:00 application => platform?
15 }; 14 };
16 } 15 }
17 16
18 #endif 17 #endif
LEFTRIGHT

Powered by Google App Engine
This is Rietveld