Changeset 17742 in webkit


Ignore:
Timestamp:
Nov 12, 2006 1:31:36 AM (18 years ago)
Author:
beidson
Message:

Reviewed by Anders

Logging channel plumbing for future work

  • platform/Logging.cpp: (WebCore::):
  • platform/Logging.h:
  • platform/mac/LoggingMac.mm: (WebCore::InitializeLoggingChannelsIfNecessary):
Location:
trunk/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r17741 r17742  
     12006-11-12  Brady Eidson <beidson@apple.com>
     2
     3        Reviewed by Anders
     4
     5        Logging channel plumbing for future work
     6
     7        * platform/Logging.cpp:
     8        (WebCore::):
     9        * platform/Logging.h:
     10        * platform/mac/LoggingMac.mm:
     11        (WebCore::InitializeLoggingChannelsIfNecessary):
     12
    1132006-11-12  Mark Rowe  <bdash@webkit.org>
    214
  • trunk/WebCore/platform/Logging.cpp

    r17476 r17742  
    4444
    4545WTFLogChannel LogSpellingAndGrammar ={ 0x00001000, "WebCoreLogLevel", WTFLogChannelOff };
     46WTFLogChannel LogBackForward =       { 0x00002000, "WebCoreLogLevel", WTFLogChannelOff };
     47WTFLogChannel LogHistory =           { 0x00004000, "WebCoreLogLevel", WTFLogChannelOff };
    4648
    4749}
  • trunk/WebCore/platform/Logging.h

    r17631 r17742  
    4545    extern WTFLogChannel LogSQLDatabase;
    4646    extern WTFLogChannel LogSpellingAndGrammar;
     47    extern WTFLogChannel LogBackForward;
     48    extern WTFLogChannel LogHistory;
    4749
    4850    void InitializeLoggingChannelsIfNecessary();
  • trunk/WebCore/platform/mac/LoggingMac.mm

    r17631 r17742  
    5858    initializeLogChannel(LogSQLDatabase);
    5959    initializeLogChannel(LogSpellingAndGrammar);
     60    initializeLogChannel(LogBackForward);
     61    initializeLogChannel(LogHistory);
    6062}
    6163
Note: See TracChangeset for help on using the changeset viewer.