Fix line wrapping in comments (see issue #3384)

This commit is contained in:
Marshall Greenblatt
2022-09-02 13:10:09 -04:00
parent 14c0f74707
commit 51699e671a

View File

@ -867,8 +867,7 @@ typedef enum {
/// ///
/// Path and filename of the module containing the CEF code (usually the /// Path and filename of the module containing the CEF code (usually the
/// libcef /// libcef module).
/// module).
/// ///
PK_FILE_MODULE, PK_FILE_MODULE,
@ -1282,11 +1281,10 @@ typedef enum {
/// tab-to-search) in the omnibox this qualifier is applied to the transition /// tab-to-search) in the omnibox this qualifier is applied to the transition
/// type of the generated url. TemplateURLModel then may generate an /// type of the generated url. TemplateURLModel then may generate an
/// additional visit with a transition type of TT_KEYWORD_GENERATED against /// additional visit with a transition type of TT_KEYWORD_GENERATED against
/// the /// the url 'http://' + keyword. For example, if you do a tab-to-search
/// url 'http://' + keyword. For example, if you do a tab-to-search against /// against wikipedia the generated url has a transition qualifer of
/// wikipedia the generated url has a transition qualifer of TT_KEYWORD, and /// TT_KEYWORD, and TemplateURLModel generates a visit for 'wikipedia.org'
/// TemplateURLModel generates a visit for 'wikipedia.org' with a transition /// with a transition type of TT_KEYWORD_GENERATED. Chrome runtime only.
/// type of TT_KEYWORD_GENERATED. Chrome runtime only.
/// ///
TT_KEYWORD = 9, TT_KEYWORD = 9,
@ -1377,20 +1375,16 @@ typedef enum {
/// If set the cache will be skipped when handling the request. Setting this /// If set the cache will be skipped when handling the request. Setting this
/// value is equivalent to specifying the "Cache-Control: no-cache" request /// value is equivalent to specifying the "Cache-Control: no-cache" request
/// header. Setting this value in combination with UR_FLAG_ONLY_FROM_CACHE /// header. Setting this value in combination with UR_FLAG_ONLY_FROM_CACHE
/// will /// will cause the request to fail.
/// cause the request to fail.
/// ///
UR_FLAG_SKIP_CACHE = 1 << 0, UR_FLAG_SKIP_CACHE = 1 << 0,
/// ///
/// If set the request will fail if it cannot be served from the cache (or /// If set the request will fail if it cannot be served from the cache (or
/// some /// some equivalent local store). Setting this value is equivalent to
/// equivalent local store). Setting this value is equivalent to specifying /// specifying the "Cache-Control: only-if-cached" request header. Setting
/// the /// this value in combination with UR_FLAG_SKIP_CACHE or UR_FLAG_DISABLE_CACHE
/// "Cache-Control: only-if-cached" request header. Setting this value in /// will cause the request to fail.
/// combination with UR_FLAG_SKIP_CACHE or UR_FLAG_DISABLE_CACHE will cause
/// the
/// request to fail.
/// ///
UR_FLAG_ONLY_FROM_CACHE = 1 << 1, UR_FLAG_ONLY_FROM_CACHE = 1 << 1,
@ -1398,8 +1392,7 @@ typedef enum {
/// If set the cache will not be used at all. Setting this value is equivalent /// If set the cache will not be used at all. Setting this value is equivalent
/// to specifying the "Cache-Control: no-store" request header. Setting this /// to specifying the "Cache-Control: no-store" request header. Setting this
/// value in combination with UR_FLAG_ONLY_FROM_CACHE will cause the request /// value in combination with UR_FLAG_ONLY_FROM_CACHE will cause the request
/// to /// to fail.
/// fail.
/// ///
UR_FLAG_DISABLE_CACHE = 1 << 2, UR_FLAG_DISABLE_CACHE = 1 << 2,