Changeset 75971 in webkit


Ignore:
Timestamp:
Jan 17, 2011 1:38:32 PM (13 years ago)
Author:
tonyg@chromium.org
Message:

2011-01-17 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Alexey Proskuryakov.

Fix some headers with missing or misspelled #ifndef guards
https://bugs.webkit.org/show_bug.cgi?id=52545

  • wtf/RefPtrHashMap.h:

2011-01-17 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Alexey Proskuryakov.

Fix some headers with missing or misspelled #ifndef guards
https://bugs.webkit.org/show_bug.cgi?id=52545

No new tests because no new functionality.

  • ForwardingHeaders/runtime/InitializeThreading.h:
  • editing/SmartReplace.h:
  • loader/CrossOriginAccessControl.h:
  • loader/NetscapePlugInStreamLoader.h:
  • platform/chromium/ClipboardUtilitiesChromium.h:
  • platform/graphics/cairo/DrawErrorUnderline.h:
  • platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h:
  • platform/graphics/cg/GraphicsContextPlatformPrivateCG.h:
  • platform/graphics/cg/PDFDocumentImage.h:
  • platform/win/WebCoreTextRenderer.h:

2011-01-17 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Alexey Proskuryakov.

Fix some headers with missing or misspelled #ifndef guards
https://bugs.webkit.org/show_bug.cgi?id=52545

  • WebKitStatistics.h:

2011-01-17 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Alexey Proskuryakov.

Fix some headers with missing or misspelled #ifndef guards
https://bugs.webkit.org/show_bug.cgi?id=52545

  • Shared/UserMessageCoders.h:
  • WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h:
  • WebProcess/InjectedBundle/InjectedBundleUserMessageCoders.h:
  • WebProcess/WebProcessMain.h:

2011-01-17 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Alexey Proskuryakov.

Fix some headers with missing or misspelled #ifndef guards
https://bugs.webkit.org/show_bug.cgi?id=52545

  • DumpRenderTree/chromium/TestEventPrinter.h:
  • DumpRenderTree/chromium/WebPreferences.h:
Location:
trunk
Files:
23 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r75961 r75971  
     12011-01-17  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Fix some headers with missing or misspelled #ifndef guards
     6        https://bugs.webkit.org/show_bug.cgi?id=52545
     7
     8        * wtf/RefPtrHashMap.h:
     9
    1102011-01-17  Dan Bernstein  <mitz@apple.com>
    211
  • trunk/Source/JavaScriptCore/wtf/RefPtrHashMap.h

    r53957 r75971  
    1919 */
    2020
     21#ifndef RefPtrHashMap_h
     22#define RefPtrHashMap_h
     23
    2124namespace WTF {
    2225
     
    335338
    336339} // namespace WTF
     340
     341#endif // RefPtrHashMap_h
  • trunk/Source/WebCore/ChangeLog

    r75969 r75971  
     12011-01-17  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Fix some headers with missing or misspelled #ifndef guards
     6        https://bugs.webkit.org/show_bug.cgi?id=52545
     7
     8        No new tests because no new functionality.
     9
     10        * ForwardingHeaders/runtime/InitializeThreading.h:
     11        * editing/SmartReplace.h:
     12        * loader/CrossOriginAccessControl.h:
     13        * loader/NetscapePlugInStreamLoader.h:
     14        * platform/chromium/ClipboardUtilitiesChromium.h:
     15        * platform/graphics/cairo/DrawErrorUnderline.h:
     16        * platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h:
     17        * platform/graphics/cg/GraphicsContextPlatformPrivateCG.h:
     18        * platform/graphics/cg/PDFDocumentImage.h:
     19        * platform/win/WebCoreTextRenderer.h:
     20
    1212011-01-17  Pavel Feldman  <pfeldman@chromium.org>
    222
  • trunk/Source/WebCore/ForwardingHeaders/runtime/InitializeThreading.h

    r49734 r75971  
    1 #ifndef WebCore_FWD_InitializeThreadingn_h
     1#ifndef WebCore_FWD_InitializeThreading_h
    22#define WebCore_FWD_InitializeThreading_h
    33#include <JavaScriptCore/InitializeThreading.h>
  • trunk/Source/WebCore/editing/SmartReplace.h

    r29663 r75971  
    2727 */
    2828
     29#ifndef SmartReplace_h
     30#define SmartReplace_h
     31
    2932#include <wtf/unicode/Unicode.h>
    3033
     
    3437
    3538} // namespace WebCore
     39
     40#endif // SmartReplace_h
  • trunk/Source/WebCore/loader/CrossOriginAccessControl.h

    r65021 r75971  
    2525 */
    2626
     27#ifndef CrossOriginAccessControl_h
     28#define CrossOriginAccessControl_h
     29
    2730#include <wtf/Forward.h>
    2831
     
    4144
    4245} // namespace WebCore
     46
     47#endif // CrossOriginAccessControl_h
  • trunk/Source/WebCore/loader/NetscapePlugInStreamLoader.h

    r71562 r75971  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
     28
     29#ifndef NetscapePlugInStreamLoader_h
     30#define NetscapePlugInStreamLoader_h
    2831
    2932#include "ResourceLoader.h"
     
    6972
    7073}
     74
     75#endif // NetscapePlugInStreamLoader_h
  • trunk/Source/WebCore/platform/chromium/ClipboardUtilitiesChromium.h

    r65021 r75971  
    2929 */
    3030
     31#ifndef ClipboardUtilitiesChromium_h
     32#define ClipboardUtilitiesChromium_h
     33
    3134#include <wtf/Forward.h>
    3235
     
    4144
    4245} // namespace WebCore
     46
     47#endif // ClipboardUtilitiesChromium_h
  • trunk/Source/WebCore/platform/graphics/cairo/DrawErrorUnderline.h

    r62871 r75971  
    2323
    2424#if PLATFORM(CAIRO)
     25
     26#ifndef DrawErrorUnderline_h
     27#define DrawErrorUnderline_h
    2528
    2629#include <cairo.h>
     
    97100}
    98101
     102#endif // DrawErrorUnderline_h
     103
    99104#endif
  • trunk/Source/WebCore/platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h

    r75148 r75971  
    2525 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2626 */
     27
     28#ifndef GraphicsContextPlatformPrivateCairo_h
     29#define GraphicsContextPlatformPrivateCairo_h
    2730
    2831#include "GraphicsContext.h"
     
    112115} // namespace WebCore
    113116
     117#endif // GraphicsContextPlatformPrivateCairo_h
  • trunk/Source/WebCore/platform/graphics/cg/GraphicsContextPlatformPrivateCG.h

    r69259 r75971  
    2323 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2424 */
     25
     26#ifndef GraphicsContextPlatformPrivateCG_h
     27#define GraphicsContextPlatformPrivateCG_h
    2528
    2629#include <wtf/RetainPtr.h>
     
    8588
    8689}
     90
     91#endif // GraphicsContextPlatformPrivateCG_h
  • trunk/Source/WebCore/platform/graphics/cg/PDFDocumentImage.h

    r56205 r75971  
    2323 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2424 */
     25
     26#ifndef PDFDocumentImage_h
     27#define PDFDocumentImage_h
    2528
    2629#include "Image.h"
     
    7780
    7881#endif // PLATFORM(CG)
     82
     83#endif // PDFDocumentImage_h
  • trunk/Source/WebCore/platform/win/WebCoreTextRenderer.h

    r65021 r75971  
    2424 */
    2525
     26#ifndef WebCoreTextRenderer_h
     27#define WebCoreTextRenderer_h
     28
    2629#include <wtf/Forward.h>
    2730
     
    4447
    4548} // namespace WebCore
     49
     50#endif // WebCoreTextRenderer_h
  • trunk/Source/WebKit/win/ChangeLog

    r75939 r75971  
     12011-01-17  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Fix some headers with missing or misspelled #ifndef guards
     6        https://bugs.webkit.org/show_bug.cgi?id=52545
     7
     8        * WebKitStatistics.h:
     9
    1102011-01-17  Pavel Feldman  <pfeldman@chromium.org>
    211
  • trunk/Source/WebKit/win/WebKitStatistics.h

    r35460 r75971  
    2828
    2929#ifndef WebKitStatistics_h
    30 #define WebkitStatistics_h
     30#define WebKitStatistics_h
    3131
    3232#include "WebKit.h"
     
    7171};
    7272
    73 #endif
     73#endif // WebKitStatistics_h
  • trunk/Source/WebKit2/ChangeLog

    r75968 r75971  
     12011-01-17  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Fix some headers with missing or misspelled #ifndef guards
     6        https://bugs.webkit.org/show_bug.cgi?id=52545
     7
     8        * Shared/UserMessageCoders.h:
     9        * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h:
     10        * WebProcess/InjectedBundle/InjectedBundleUserMessageCoders.h:
     11        * WebProcess/WebProcessMain.h:
     12
    1132011-01-17  Alexey Proskuryakov  <ap@apple.com>
    214
  • trunk/Source/WebKit2/Shared/UserMessageCoders.h

    r75527 r75971  
    2424 */
    2525
     26#ifndef UserMessageCoders_h
     27#define UserMessageCoders_h
     28
    2629#include "ArgumentDecoder.h"
    2730#include "ArgumentEncoder.h"
     
    303306
    304307} // namespace WebKit
     308
     309#endif // UserMessageCoders_h
  • trunk/Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h

    r73579 r75971  
    2323 * THE POSSIBILITY OF SUCH DAMAGE.
    2424 */
     25
     26#ifndef InjectedBundleNodeHandle_h
     27#define InjectedBundleNodeHandle_h
    2528
    2629#include "APIObject.h"
     
    7376
    7477} // namespace WebKit
     78
     79#endif // InjectedBundleNodeHandle_h
  • trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleUserMessageCoders.h

    r73066 r75971  
    2323 * THE POSSIBILITY OF SUCH DAMAGE.
    2424 */
     25
     26#ifndef InjectedBundleUserMessageCoders_h
     27#define InjectedBundleUserMessageCoders_h
    2528
    2629#include "UserMessageCoders.h"
     
    135138
    136139} // namespace WebKit
     140
     141#endif // InjectedBundleUserMessageCoders_h
  • trunk/Source/WebKit2/WebProcess/WebProcessMain.h

    r68075 r75971  
    2424 */
    2525
     26#ifndef WebProcessMain_h
     27#define WebProcessMain_h
     28
    2629#include "WKBase.h"
    2730
     
    3336
    3437} // namespace WebKit
     38
     39#endif // WebProcessMain_h
  • trunk/Tools/ChangeLog

    r75966 r75971  
     12011-01-17  Tony Gentilcore  <tonyg@chromium.org>
     2
     3        Reviewed by Alexey Proskuryakov.
     4
     5        Fix some headers with missing or misspelled #ifndef guards
     6        https://bugs.webkit.org/show_bug.cgi?id=52545
     7
     8        * DumpRenderTree/chromium/TestEventPrinter.h:
     9        * DumpRenderTree/chromium/WebPreferences.h:
     10
    1112011-01-17  Jessie Berlin  <jberlin@apple.com>
    212
  • trunk/Tools/DumpRenderTree/chromium/TestEventPrinter.h

    r60427 r75971  
    2929 */
    3030
     31#ifndef TestEventPrinter_h
     32#define TestEventPrinter_h
     33
    3134class TestEventPrinter {
    3235public:
     
    4245    virtual void handleTestFooter(bool dumpedAnything) const = 0;
    4346};
     47
     48#endif // TestEventPrinter_h
  • trunk/Tools/DumpRenderTree/chromium/WebPreferences.h

    r70064 r75971  
    3030
    3131#ifndef WebPreferences_h
    32 #define WebPerferences_h
     32#define WebPreferences_h
    3333
    3434#include "WebSettings.h"
Note: See TracChangeset for help on using the changeset viewer.