Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Class CefNavigationEntryVisitor

CefBaseRefCounted
   |
   +--CefNavigationEntryVisitor

   in cef_browser.h

class CefNavigationEntryVisitor
extends CefBaseRefCounted

Callback interface for CefBrowserHost::GetNavigationEntries. The methods of this class will be called on the browser process UI thread.


Method Summary
 virtual bool Visit( CefRefPtr< CefNavigationEntry > entry, bool current, int index, int total )= 0
          Method that will be executed.
   
Methods inherited from class CefBaseRefCounted
AddRef, Release, HasOneRef, HasAtLeastOneRef
 

Method Detail

Visit

public virtual bool Visit( CefRefPtr< CefNavigationEntry > entry, bool current, int index, int total )= 0;
Method that will be executed. Do not keep a reference to |entry| outside of this callback. Return true to continue visiting entries or false to stop. |current| is true 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.

 Overview   Project   Class   Tree   Index 
CEF3 C++ API Docs - Version 80.1.4+g8927396+chromium-80.0.3987.149
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2016 Marshall A. Greenblatt