canmove, Confirmed users
725
edits
| Line 401: | Line 401: | ||
We sync the last 10 visits per place. We don't need visit_count and we don't care about from_visit and session. --philikon | We sync the last 10 visits per place. We don't need visit_count and we don't care about from_visit and session. --philikon | ||
== Input History == | == New: Input History == | ||
Turns out we want to sync input history too, see {{bug|597874}}. It would be great if we could add the following to <code>nsIPlaceInfo</code>: | |||
/** | |||
* An array of nsIInputHistory objects for the place. | |||
*/ | |||
readonly nsIVariant inputs; | |||
with <code>nsIPlaceInfo</code>: | |||
interface nsIVisitInfo : nsISupports | |||
{ | |||
ACString input, | |||
double use_count | |||
} | |||