Changeset 109875 in webkit


Ignore:
Timestamp:
Mar 6, 2012 1:07:47 AM (12 years ago)
Author:
abarth@webkit.org
Message:

Attempt to fix the GTK minimal build
https://bugs.webkit.org/show_bug.cgi?id=80390

Reviewed by Csaba Osztrogonác.

Add some missing ifdefs.

  • Modules/geolocation/NavigatorGeolocation.cpp:
  • Modules/geolocation/NavigatorGeolocation.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r109872 r109875  
     12012-03-06  Adam Barth  <abarth@webkit.org>
     2
     3        Attempt to fix the GTK minimal build
     4        https://bugs.webkit.org/show_bug.cgi?id=80390
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        Add some missing ifdefs.
     9
     10        * Modules/geolocation/NavigatorGeolocation.cpp:
     11        * Modules/geolocation/NavigatorGeolocation.h:
     12
    1132012-03-05  Pavel Podivilov  <podivilov@chromium.org>
    214
  • trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.cpp

    r109761 r109875  
    2222
    2323#include "config.h"
     24
     25#if ENABLE(GEOLOCATION)
     26
    2427#include "NavigatorGeolocation.h"
    2528
     
    6467
    6568} // namespace WebCore
     69
     70#endif // ENABLE(GEOLOCATION)
  • trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.h

    r109761 r109875  
    2020#ifndef NavigatorGeolocation_h
    2121#define NavigatorGeolocation_h
     22
     23#if ENABLE(GEOLOCATION)
    2224
    2325#include "DOMWindowProperty.h"
     
    4648} // namespace WebCore
    4749
     50#endif // ENABLE(GEOLOCATION)
     51
    4852#endif // NavigatorGeolocation_h
Note: See TracChangeset for help on using the changeset viewer.