| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #ifndef ADBLOCK_PLUS_APP_INFO_H | |
| 2 #define ADBLOCK_PLUS_APP_INFO_H | |
| 3 | |
| 4 #include <string> | |
| 5 | |
| 6 namespace AdblockPlus | |
| 7 { | |
| 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 { | |
| 10 std::string addonId; | |
| 11 std::string addonVersion; | |
| 12 std::string addonRoot; | |
|
Wladimir Palant
2013/04/15 10:56:00
addonRoot is probably unnecessary - it is only use
| |
| 13 std::string addonName; | |
| 14 std::string application; | |
|
Wladimir Palant
2013/04/15 10:56:00
application => platform?
| |
| 15 }; | |
| 16 } | |
| 17 | |
| 18 #endif | |
| OLD | NEW |