Changeset 147721 in webkit


Ignore:
Timestamp:
Apr 5, 2013 1:02:32 AM (11 years ago)
Author:
rniwa@webkit.org
Message:

Remove Chromium code from WebCore/editing
https://bugs.webkit.org/show_bug.cgi?id=114008

Reviewed by Benjamin Poulain.

Removed.

  • editing/EditingBehavior.h:

(WebCore::EditingBehavior::shouldAllowSpellingSuggestionsWithoutSelection):

  • editing/FrameSelection.h:

(WebCore):

  • editing/chromium: Removed.
  • editing/chromium/EditorChromium.cpp: Removed.
  • editing/chromium/FrameSelectionChromium.cpp: Removed.
Location:
trunk/Source/WebCore
Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r147720 r147721  
     12013-04-05  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Remove Chromium code from WebCore/editing
     4        https://bugs.webkit.org/show_bug.cgi?id=114008
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        Removed.
     9
     10        * editing/EditingBehavior.h:
     11        (WebCore::EditingBehavior::shouldAllowSpellingSuggestionsWithoutSelection):
     12        * editing/FrameSelection.h:
     13        (WebCore):
     14        * editing/chromium: Removed.
     15        * editing/chromium/EditorChromium.cpp: Removed.
     16        * editing/chromium/FrameSelectionChromium.cpp: Removed.
     17
    1182013-04-05  Benjamin Poulain  <benjamin@webkit.org>
    219
  • trunk/Source/WebCore/editing/EditingBehavior.h

    r141837 r147721  
    6565
    6666    // On Linux, should be able to get and insert spelling suggestions without selecting the misspelled word.
    67     // Skip this policy for Chromium, they require selection for the misspelled word.
    6867    bool shouldAllowSpellingSuggestionsWithoutSelection() const
    6968    {
    70 #if !PLATFORM(CHROMIUM)
    7169        return m_type == EditingUnixBehavior || m_type == EditingAndroidBehavior;
    72 #else
    73         return false;
    74 #endif
    7570    }
    7671   
  • trunk/Source/WebCore/editing/FrameSelection.h

    r143937 r147721  
    330330}
    331331
    332 #if !(PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(CHROMIUM) || PLATFORM(EFL))
     332#if !(PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(EFL))
    333333inline void FrameSelection::notifyAccessibilityForSelectionChange()
    334334{
Note: See TracChangeset for help on using the changeset viewer.