Left: | ||
Right: |
LEFT | RIGHT |
---|---|
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 |
LEFT | RIGHT |