Changeset 51910 in webkit


Ignore:
Timestamp:
Dec 9, 2009 11:59:52 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-09 Patrick Scott <phanna@email.unc.edu>

Fix the build with ENABLE_ORIENTATION_EVENTS
https://bugs.webkit.org/show_bug.cgi?id=32321

  • page/Frame.cpp: (WebCore::Frame::sendOrientationChangeEvent):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r51909 r51910  
     12009-12-09  Patrick Scott  <phanna@email.unc.edu>
     2
     3        Fix the build with ENABLE_ORIENTATION_EVENTS
     4        https://bugs.webkit.org/show_bug.cgi?id=32321
     5
     6        * page/Frame.cpp:
     7        (WebCore::Frame::sendOrientationChangeEvent):
     8
    192009-12-09  Avi Drissman  <avi@chromium.org>
    210
  • trunk/WebCore/page/Frame.cpp

    r51324 r51910  
    297297    m_orientation = orientation;
    298298    if (Document* doc = document())
    299         doc->dispatchWindowEvent(eventNames().orientationchangeEvent, false, false);
     299        doc->dispatchWindowEvent(Event::create(eventNames().orientationchangeEvent, false, false));
    300300}
    301301#endif // ENABLE(ORIENTATION_EVENTS)
Note: See TracChangeset for help on using the changeset viewer.