Changeset 75805 in webkit


Ignore:
Timestamp:
Jan 14, 2011 11:16:53 AM (13 years ago)
Author:
tkent@chromium.org
Message:

2011-01-14 Kent Tamura <tkent@chromium.org>

Reviewed by Darin Fisher.

[Chromium] WebKit API: Add a function for form interactive validation setting
https://bugs.webkit.org/show_bug.cgi?id=52430

  • public/WebSettings.h: Add a pure setInteractiveFormValidationEnabled().
  • src/WebSettingsImpl.cpp: (WebKit::WebSettingsImpl::setInteractiveFormValidationEnabled): Implemented.
  • src/WebSettingsImpl.h: Add a declaration.
Location:
trunk/WebKit/chromium
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r75800 r75805  
     12011-01-14  Kent Tamura  <tkent@chromium.org>
     2
     3        Reviewed by Darin Fisher.
     4
     5        [Chromium] WebKit API: Add a function for form interactive validation setting
     6        https://bugs.webkit.org/show_bug.cgi?id=52430
     7
     8        * public/WebSettings.h: Add a pure setInteractiveFormValidationEnabled().
     9        * src/WebSettingsImpl.cpp:
     10        (WebKit::WebSettingsImpl::setInteractiveFormValidationEnabled): Implemented.
     11        * src/WebSettingsImpl.h: Add a declaration.
     12
    1132011-01-14  Vincent Scheib  <scheib@chromium.org>
    214
  • trunk/WebKit/chromium/public/WebSettings.h

    r73055 r75805  
    4141// WebSettings is owned by the WebView and allows code to modify the settings for
    4242// the WebView's page without any knowledge of WebCore itself.  For the most part,
    43 // these functions have a 1:1 mapping with the methods in WebCore/page/settings.h.
     43// these functions have a 1:1 mapping with the methods in WebCore/page/Settings.h.
    4444class WebSettings {
    4545public:
     
    103103    virtual void setHyperlinkAuditingEnabled(bool) = 0;
    104104    virtual void setCaretBrowsingEnabled(bool) = 0;
     105    virtual void setInteractiveFormValidationEnabled(bool) = 0;
    105106
    106107protected:
  • trunk/WebKit/chromium/src/WebSettingsImpl.cpp

    r73055 r75805  
    330330}
    331331
     332void WebSettingsImpl::setInteractiveFormValidationEnabled(bool enabled)
     333{
     334    m_settings->setInteractiveFormValidationEnabled(enabled);
     335}
     336
    332337} // namespace WebKit
  • trunk/WebKit/chromium/src/WebSettingsImpl.h

    r73055 r75805  
    9898    virtual void setHyperlinkAuditingEnabled(bool);
    9999    virtual void setCaretBrowsingEnabled(bool);
     100    virtual void setInteractiveFormValidationEnabled(bool);
    100101
    101102private:
Note: See TracChangeset for help on using the changeset viewer.