cef_navigation_entry_visitor_t

Callback structure for cef_browser_host_t::GetNavigationEntries. The functions of this structure will be called on the browser process UI thread.

Members

Variables

base
cef_base_ref_counted_t base;

Base structure.

visit
int function(cef_navigation_entry_visitor_t* self, cef_navigation_entry_t* entry, int current, int index, int total) nothrow visit;

Method that will be executed. Do not keep a reference to |entry| outside of this callback. Return true (1) to continue visiting entries or false (0) to stop. |current| is true (1) if this entry is the currently loaded navigation entry. |index| is the 0-based index of this entry and |total| is the total number of entries.

Meta