Changeset 139287 in webkit


Ignore:
Timestamp:
Jan 9, 2013 11:07:18 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[WK2][EFL] Add guard around NativeWebTouchEvent
https://bugs.webkit.org/show_bug.cgi?id=105846

Patch by Seokju Kwon <Seokju Kwon> on 2013-01-09
Reviewed by Benjamin Poulain.

Fix EFL build without TOUCH_EVENTS.

  • Shared/efl/NativeWebTouchEventEfl.cpp: Add TOUCH_EVENTS guard.
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r139275 r139287  
     12013-01-09  Seokju Kwon  <seokju.kwon@gmail.com>
     2
     3        [WK2][EFL] Add guard around NativeWebTouchEvent
     4        https://bugs.webkit.org/show_bug.cgi?id=105846
     5
     6        Reviewed by Benjamin Poulain.
     7
     8        Fix EFL build without TOUCH_EVENTS.
     9
     10        * Shared/efl/NativeWebTouchEventEfl.cpp: Add TOUCH_EVENTS guard.
     11
    1122013-01-09  Huang Dongsung  <luxtella@company100.net>
    213
  • trunk/Source/WebKit2/Shared/efl/NativeWebTouchEventEfl.cpp

    r133012 r139287  
    2525
    2626#include "config.h"
     27
     28#if ENABLE(TOUCH_EVENTS)
    2729#include "NativeWebTouchEvent.h"
    2830
    2931#include "WebEventFactory.h"
    30 
    31 #if ENABLE(TOUCH_EVENTS)
    3232
    3333namespace WebKit {
Note: See TracChangeset for help on using the changeset viewer.