|
| virtual bool | IsValid ()=0 |
| | True if this object is currently valid.
|
| |
| virtual CefRefPtr< CefBrowserHost > | GetHost ()=0 |
| | Returns the browser host object.
|
| |
| virtual bool | CanGoBack ()=0 |
| | Returns true if the browser can navigate backwards.
|
| |
| virtual void | GoBack ()=0 |
| | Navigate backwards.
|
| |
| virtual bool | CanGoForward ()=0 |
| | Returns true if the browser can navigate forwards.
|
| |
| virtual void | GoForward ()=0 |
| | Navigate forwards.
|
| |
| virtual bool | IsLoading ()=0 |
| | Returns true if the browser is currently loading.
|
| |
| virtual void | Reload ()=0 |
| | Reload the current page.
|
| |
| virtual void | ReloadIgnoreCache ()=0 |
| | Reload the current page ignoring any cached data.
|
| |
| virtual void | StopLoad ()=0 |
| | Stop loading the page.
|
| |
| virtual int | GetIdentifier ()=0 |
| | Returns the globally unique identifier for this browser.
|
| |
| virtual bool | IsSame (CefRefPtr< CefBrowser > that)=0 |
| | Returns true if this object is pointing to the same handle as |that| object.
|
| |
| virtual bool | IsPopup ()=0 |
| | Returns true if the browser is a popup.
|
| |
| virtual bool | HasDocument ()=0 |
| | Returns true if a document has been loaded in the browser.
|
| |
| virtual CefRefPtr< CefFrame > | GetMainFrame ()=0 |
| | Returns the main (top-level) frame for the browser.
|
| |
| virtual CefRefPtr< CefFrame > | GetFocusedFrame ()=0 |
| | Returns the focused frame for the browser.
|
| |
| virtual CefRefPtr< CefFrame > | GetFrameByIdentifier (const CefString &identifier)=0 |
| | Returns the frame with the specified identifier, or NULL if not found.
|
| |
| virtual CefRefPtr< CefFrame > | GetFrameByName (const CefString &name)=0 |
| | Returns the frame with the specified name, or NULL if not found.
|
| |
| virtual size_t | GetFrameCount ()=0 |
| | Returns the number of frames that currently exist.
|
| |
| virtual void | GetFrameIdentifiers (std::vector< CefString > &identifiers)=0 |
| | Returns the identifiers of all existing frames.
|
| |
| virtual void | GetFrameNames (std::vector< CefString > &names)=0 |
| | Returns the names of all existing frames.
|
| |
| virtual void | AddRef () const =0 |
| | Called to increment the reference count for the object.
|
| |
| virtual bool | Release () const =0 |
| | Called to decrement the reference count for the object.
|
| |
| virtual bool | HasOneRef () const =0 |
| | Returns true if the reference count is 1.
|
| |
| virtual bool | HasAtLeastOneRef () const =0 |
| | Returns true if the reference count is at least 1.
|
| |
Class used to represent a browser.
When used in the browser process the methods of this class may be called on any thread unless otherwise indicated in the comments. When used in the render process the methods of this class may only be called on the main thread.