[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

ap at apple.com ap at apple.com
Sun Feb 20 23:07:13 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit d423cf51e770bfc84d862a430f045c421640d6a3
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 17 20:16:58 2011 +0000

            Reviewed by Dan Bernstein.
    
            https://bugs.webkit.org/show_bug.cgi?id=52592
            Add a logging channel for WKView
    
            * Platform/Logging.cpp:
            * Platform/Logging.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75965 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog
index e6af6af..5887a0e 100644
--- a/Source/WebKit2/ChangeLog
+++ b/Source/WebKit2/ChangeLog
@@ -1,3 +1,13 @@
+2011-01-17  Alexey Proskuryakov  <ap at apple.com>
+
+        Reviewed by Dan Bernstein.
+
+        https://bugs.webkit.org/show_bug.cgi?id=52592
+        Add a logging channel for WKView
+
+        * Platform/Logging.cpp:
+        * Platform/Logging.h:
+
 2011-01-17  Anders Carlsson  <andersca at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/Source/WebKit2/Platform/Logging.cpp b/Source/WebKit2/Platform/Logging.cpp
index 0cf6610..5e7a8c4 100644
--- a/Source/WebKit2/Platform/Logging.cpp
+++ b/Source/WebKit2/Platform/Logging.cpp
@@ -30,6 +30,7 @@
 WTFLogChannel LogSessionState = { 0x00000001, "WebKit2LogLevel", WTFLogChannelOff };
 WTFLogChannel LogContextMenu  = { 0x00000002, "WebKit2LogLevel", WTFLogChannelOff };
 WTFLogChannel LogTextInput    = { 0x00000004, "WebKit2LogLevel", WTFLogChannelOff };
+WTFLogChannel LogTextView     = { 0x00000008, "WebKit2LogLevel", WTFLogChannelOff };
 
 static inline void initializeLogChannel(WTFLogChannel* channel)
 {
@@ -46,6 +47,7 @@ void initializeLogChannelsIfNecessary()
     initializeLogChannel(&LogContextMenu);
     initializeLogChannel(&LogSessionState);
     initializeLogChannel(&LogTextInput);
+    initializeLogChannel(&LogView);
 }
 
 #endif // LOG_DISABLED
diff --git a/Source/WebKit2/Platform/Logging.h b/Source/WebKit2/Platform/Logging.h
index 4e189da..b2cc391 100644
--- a/Source/WebKit2/Platform/Logging.h
+++ b/Source/WebKit2/Platform/Logging.h
@@ -39,6 +39,7 @@ EXTERN_C_BEGIN
 extern WTFLogChannel LogContextMenu;
 extern WTFLogChannel LogSessionState;
 extern WTFLogChannel LogTextInput;
+extern WTFLogChannel LogView;
 
 void initializeLogChannelsIfNecessary(void);
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list