mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update include/ comments to Doxygen formatting (see issue #3384)
See related guidelines in the issue.
This commit is contained in:
@ -44,27 +44,27 @@ class CefBoxLayout;
|
||||
class CefFillLayout;
|
||||
|
||||
///
|
||||
// A Layout handles the sizing of the children of a Panel according to
|
||||
// implementation-specific heuristics. Methods must be called on the browser
|
||||
// process UI thread unless otherwise indicated.
|
||||
/// A Layout handles the sizing of the children of a Panel according to
|
||||
/// implementation-specific heuristics. Methods must be called on the browser
|
||||
/// process UI thread unless otherwise indicated.
|
||||
///
|
||||
/*--cef(source=library)--*/
|
||||
class CefLayout : public CefBaseRefCounted {
|
||||
public:
|
||||
///
|
||||
// Returns this Layout as a BoxLayout or NULL if this is not a BoxLayout.
|
||||
/// Returns this Layout as a BoxLayout or NULL if this is not a BoxLayout.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual CefRefPtr<CefBoxLayout> AsBoxLayout() = 0;
|
||||
|
||||
///
|
||||
// Returns this Layout as a FillLayout or NULL if this is not a FillLayout.
|
||||
/// Returns this Layout as a FillLayout or NULL if this is not a FillLayout.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual CefRefPtr<CefFillLayout> AsFillLayout() = 0;
|
||||
|
||||
///
|
||||
// Returns true if this Layout is valid.
|
||||
/// Returns true if this Layout is valid.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual bool IsValid() = 0;
|
||||
|
Reference in New Issue
Block a user