Changeset 133238 in webkit


Ignore:
Timestamp:
Nov 1, 2012 3:58:30 PM (11 years ago)
Author:
rniwa@webkit.org
Message:

Build fix after r133224 as suggested by Enrica.
Confirmed the test failures go away on Chromium Mac locally.

  • page/EventHandler.cpp:

(WebCore::EventHandler::updateSelectionForMouseDrag):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r133233 r133238  
     12012-11-01  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Build fix after r133224 as suggested by Enrica.
     4        Confirmed the test failures go away on Chromium Mac locally.
     5
     6        * page/EventHandler.cpp:
     7        (WebCore::EventHandler::updateSelectionForMouseDrag):
     8
    192012-11-01  Alexey Proskuryakov  <ap@apple.com>
    210
  • trunk/Source/WebCore/page/EventHandler.cpp

    r133224 r133238  
    870870            newSelection.setExtent(targetPosition);
    871871    }
    872 #endif
     872#else
     873    newSelection.setExtent(targetPosition);
     874#endif
     875
    873876    if (m_frame->selection()->granularity() != CharacterGranularity)
    874877        newSelection.expandUsingGranularity(m_frame->selection()->granularity());
Note: See TracChangeset for help on using the changeset viewer.