Changeset 131496 in webkit


Ignore:
Timestamp:
Oct 16, 2012 1:59:07 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Remove Platform.h include from the header files.
https://bugs.webkit.org/show_bug.cgi?id=98665

Patch by Dima Gorbik <dgorbik@apple.com> on 2012-10-16
Reviewed by Eric Seidel.

We don't want other clients that include WebKit headers to know about Platform.h.

Source/JavaScriptCore:

  • API/tests/minidom.c:
  • API/tests/testapi.c:

Source/WebCore:

No new tests.

  • platform/MemoryPressureHandler.h:
  • platform/graphics/filters/arm/FECompositeArithmeticNEON.h:
  • platform/graphics/filters/arm/FEGaussianBlurNEON.h:
  • platform/graphics/filters/arm/FELightingNEON.h:

Source/WTF:

  • wtf/Assertions.h:
  • wtf/MainThread.h:

Tools:

  • DumpRenderTree/mac/MockGeolocationProvider.mm:
Location:
trunk
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/API/tests/minidom.c

    r35900 r131496  
    3131#include <stdio.h>
    3232#include <stdlib.h>
     33#include <wtf/Platform.h>
    3334#include <wtf/Assertions.h>
    3435#include <wtf/UnusedParam.h>
  • trunk/Source/JavaScriptCore/API/tests/testapi.c

    r130832 r131496  
    3030#include <math.h>
    3131#define ASSERT_DISABLED 0
     32#include <wtf/Platform.h>
    3233#include <wtf/Assertions.h>
    3334#include <wtf/UnusedParam.h>
  • trunk/Source/JavaScriptCore/ChangeLog

    r131475 r131496  
     12012-10-16  Dima Gorbik  <dgorbik@apple.com>
     2
     3        Remove Platform.h include from the header files.
     4        https://bugs.webkit.org/show_bug.cgi?id=98665
     5
     6        Reviewed by Eric Seidel.
     7
     8        We don't want other clients that include WebKit headers to know about Platform.h.
     9
     10        * API/tests/minidom.c:
     11        * API/tests/testapi.c:
     12
    1132012-10-16  Balazs Kilvady  <kilvadyb@homejinni.com>
    214
  • trunk/Source/WTF/ChangeLog

    r131484 r131496  
     12012-10-16  Dima Gorbik  <dgorbik@apple.com>
     2
     3        Remove Platform.h include from the header files.
     4        https://bugs.webkit.org/show_bug.cgi?id=98665
     5
     6        Reviewed by Eric Seidel.
     7
     8        We don't want other clients that include WebKit headers to know about Platform.h.
     9
     10        * wtf/Assertions.h:
     11        * wtf/MainThread.h:
     12
    1132012-10-16  Adrienne Walker  <enne@google.com>
    214
  • trunk/Source/WTF/wtf/Assertions.h

    r128015 r131496  
    4343*/
    4444
    45 #include <wtf/Platform.h>
    46 
    4745#include <stddef.h>
    4846
  • trunk/Source/WTF/wtf/MainThread.h

    r111778 r131496  
    3030#ifndef MainThread_h
    3131#define MainThread_h
    32 
    33 #include <wtf/Platform.h>
    3432
    3533#include <stdint.h>
  • trunk/Source/WebCore/ChangeLog

    r131495 r131496  
     12012-10-16  Dima Gorbik  <dgorbik@apple.com>
     2
     3        Remove Platform.h include from the header files.
     4        https://bugs.webkit.org/show_bug.cgi?id=98665
     5
     6        Reviewed by Eric Seidel.
     7
     8        We don't want other clients that include WebKit headers to know about Platform.h.
     9
     10        No new tests.
     11
     12        * platform/MemoryPressureHandler.h:
     13        * platform/graphics/filters/arm/FECompositeArithmeticNEON.h:
     14        * platform/graphics/filters/arm/FEGaussianBlurNEON.h:
     15        * platform/graphics/filters/arm/FELightingNEON.h:
     16
    1172012-10-16  Xianzhu Wang  <wangxianzhu@chromium.org>
    218
  • trunk/Source/WebCore/platform/MemoryPressureHandler.h

    r128572 r131496  
    2929#include <time.h>
    3030#include <wtf/FastAllocBase.h>
    31 #include <wtf/Platform.h>
    3231
    3332namespace WebCore {
  • trunk/Source/WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.h

    r117418 r131496  
    2727#ifndef FECompositeArithmeticNEON_h
    2828#define FECompositeArithmeticNEON_h
    29 
    30 #include <wtf/Platform.h>
    3129
    3230#if ENABLE(FILTERS) && HAVE(ARM_NEON_INTRINSICS)
  • trunk/Source/WebCore/platform/graphics/filters/arm/FEGaussianBlurNEON.h

    r121951 r131496  
    2727#ifndef FEGaussianBlurNEON_h
    2828#define FEGaussianBlurNEON_h
    29 
    30 #include <wtf/Platform.h>
    3129
    3230#if ENABLE(FILTERS) && HAVE(ARM_NEON_INTRINSICS)
  • trunk/Source/WebCore/platform/graphics/filters/arm/FELightingNEON.h

    r117048 r131496  
    2828#define FELightingNeon_h
    2929
    30 #include <wtf/Platform.h>
    31 
    3230#if CPU(ARM_NEON) && CPU(ARM_TRADITIONAL) && COMPILER(GCC)
    3331
  • trunk/Tools/ChangeLog

    r131494 r131496  
     12012-10-16  Dima Gorbik  <dgorbik@apple.com>
     2
     3        Remove Platform.h include from the header files.
     4        https://bugs.webkit.org/show_bug.cgi?id=98665
     5
     6        Reviewed by Eric Seidel.
     7
     8        We don't want other clients that include WebKit headers to know about Platform.h.
     9
     10        * DumpRenderTree/mac/MockGeolocationProvider.mm:
     11
    1122012-10-16  Tommy Widenflycht  <tommyw@google.com>
    213
  • trunk/Tools/DumpRenderTree/mac/MockGeolocationProvider.mm

    r129444 r131496  
    2424 */
    2525
     26#include <wtf/Platform.h>
    2627#import "MockGeolocationProvider.h"
    27 
    2828
    2929@implementation MockGeolocationProvider
Note: See TracChangeset for help on using the changeset viewer.