Title: [102235] trunk/Source
Revision
102235
Author
commit-qu...@webkit.org
Date
2011-12-07 06:54:13 -0800 (Wed, 07 Dec 2011)

Log Message

Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
https://bugs.webkit.org/show_bug.cgi?id=73986

Patch by Mary Wu <mary...@torchmobile.com.cn> on 2011-12-07
Reviewed by Kenneth Rohde Christiansen.

Source/WebCore:

Just function name change, no new tests.

* platform/Logging.h:
* platform/efl/LoggingEfl.cpp:
(WebCore::initializeLoggingChannelsIfNecessary):
* platform/gtk/LoggingGtk.cpp:
(WebCore::initializeLoggingChannelsIfNecessary):
* platform/mac/LoggingMac.mm:
(WebCore::initializeLoggingChannelsIfNecessary):
* platform/qt/LoggingQt.cpp:
(WebCore::initializeLoggingChannelsIfNecessary):
* platform/win/LoggingWin.cpp:
(WebCore::initializeLoggingChannelsIfNecessary):
* platform/wx/LoggingWx.cpp:
(WebCore::initializeLoggingChannelsIfNecessary):

Source/WebKit/efl:

* ewk/ewk_main.cpp:
(_ewk_init_body):

Source/WebKit/gtk:

* webkit/webkitglobals.cpp:
(webkitInit):

Source/WebKit/mac:

* WebView/WebView.mm:
(-[WebView _commonInitializationWithFrameName:groupName:]):

Source/WebKit/qt:

* WebCoreSupport/InitWebCoreQt.cpp:
(WebCore::initializeWebCoreQt):

Source/WebKit/win:

* WebView.cpp:
(WebView::initWithFrame):

Source/WebKit/wx:

* WebView.cpp:
(wxWebView::Create):

Source/WebKit2:

* UIProcess/WebContext.cpp:
(WebKit::WebContext::WebContext):
* WebProcess/WebProcess.cpp:
(WebKit::WebProcess::WebProcess):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (102234 => 102235)


--- trunk/Source/WebCore/ChangeLog	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/ChangeLog	2011-12-07 14:54:13 UTC (rev 102235)
@@ -1,3 +1,26 @@
+2011-12-07  Mary Wu  <mary...@torchmobile.com.cn>
+
+        Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
+        https://bugs.webkit.org/show_bug.cgi?id=73986
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Just function name change, no new tests.
+
+        * platform/Logging.h:
+        * platform/efl/LoggingEfl.cpp:
+        (WebCore::initializeLoggingChannelsIfNecessary):
+        * platform/gtk/LoggingGtk.cpp:
+        (WebCore::initializeLoggingChannelsIfNecessary):
+        * platform/mac/LoggingMac.mm:
+        (WebCore::initializeLoggingChannelsIfNecessary):
+        * platform/qt/LoggingQt.cpp:
+        (WebCore::initializeLoggingChannelsIfNecessary):
+        * platform/win/LoggingWin.cpp:
+        (WebCore::initializeLoggingChannelsIfNecessary):
+        * platform/wx/LoggingWx.cpp:
+        (WebCore::initializeLoggingChannelsIfNecessary):
+
 2011-12-07  Mihnea Ovidenie  <mih...@adobe.com>
 
         [CSSRegions]Add support for background-color in region styling

Modified: trunk/Source/WebCore/platform/Logging.h (102234 => 102235)


--- trunk/Source/WebCore/platform/Logging.h	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/platform/Logging.h	2011-12-07 14:54:13 UTC (rev 102235)
@@ -60,7 +60,7 @@
     extern WTFLogChannel LogProgress;
     extern WTFLogChannel LogFileAPI;
 
-    void InitializeLoggingChannelsIfNecessary();
+    void initializeLoggingChannelsIfNecessary();
     WTFLogChannel* getChannelFromName(const String& channelName);
 }
 

Modified: trunk/Source/WebCore/platform/blackberry/LoggingBlackBerry.cpp (102234 => 102235)


--- trunk/Source/WebCore/platform/blackberry/LoggingBlackBerry.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/platform/blackberry/LoggingBlackBerry.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -29,7 +29,7 @@
         channel.state = WTFLogChannelOff;
 }
 
-void InitializeLoggingChannelsIfNecessary()
+void initializeLoggingChannelsIfNecessary()
 {
     static bool haveInitializedLoggingChannels = false;
     if (haveInitializedLoggingChannels)

Modified: trunk/Source/WebCore/platform/efl/LoggingEfl.cpp (102234 => 102235)


--- trunk/Source/WebCore/platform/efl/LoggingEfl.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/platform/efl/LoggingEfl.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -28,7 +28,7 @@
 
 namespace WebCore {
 
-void InitializeLoggingChannelsIfNecessary()
+void initializeLoggingChannelsIfNecessary()
 {
     static bool didInitializeLoggingChannels = false;
     if (didInitializeLoggingChannels)

Modified: trunk/Source/WebCore/platform/gtk/LoggingGtk.cpp (102234 => 102235)


--- trunk/Source/WebCore/platform/gtk/LoggingGtk.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/platform/gtk/LoggingGtk.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -29,7 +29,7 @@
 
 // Inspired by the code used by the Qt port
 
-void InitializeLoggingChannelsIfNecessary()
+void initializeLoggingChannelsIfNecessary()
 {
     static bool didInitializeLoggingChannels = false;
     if (didInitializeLoggingChannels)

Modified: trunk/Source/WebCore/platform/mac/LoggingMac.mm (102234 => 102235)


--- trunk/Source/WebCore/platform/mac/LoggingMac.mm	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/platform/mac/LoggingMac.mm	2011-12-07 14:54:13 UTC (rev 102235)
@@ -43,7 +43,7 @@
     }
 }
 
-void InitializeLoggingChannelsIfNecessary()
+void initializeLoggingChannelsIfNecessary()
 {
     static bool haveInitializedLoggingChannels = false;
     if (haveInitializedLoggingChannels)

Modified: trunk/Source/WebCore/platform/qt/LoggingQt.cpp (102234 => 102235)


--- trunk/Source/WebCore/platform/qt/LoggingQt.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/platform/qt/LoggingQt.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -26,7 +26,7 @@
 
 namespace WebCore {
 
-void InitializeLoggingChannelsIfNecessary()
+void initializeLoggingChannelsIfNecessary()
 {
     static bool haveInitializedLoggingChannels = false;
     if (haveInitializedLoggingChannels)

Modified: trunk/Source/WebCore/platform/win/LoggingWin.cpp (102234 => 102235)


--- trunk/Source/WebCore/platform/win/LoggingWin.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/platform/win/LoggingWin.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -68,7 +68,7 @@
         channel.state = WTFLogChannelOff;
 }
 
-void InitializeLoggingChannelsIfNecessary()
+void initializeLoggingChannelsIfNecessary()
 {
     static bool haveInitializedLoggingChannels = false;
     if (haveInitializedLoggingChannels)

Modified: trunk/Source/WebCore/platform/wx/LoggingWx.cpp (102234 => 102235)


--- trunk/Source/WebCore/platform/wx/LoggingWx.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebCore/platform/wx/LoggingWx.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -35,7 +35,7 @@
 
 namespace WebCore {
 
-void InitializeLoggingChannelsIfNecessary()
+void initializeLoggingChannelsIfNecessary()
 {
     static bool haveInitializedLoggingChannels = false;
     if (haveInitializedLoggingChannels)

Modified: trunk/Source/WebKit/efl/ChangeLog (102234 => 102235)


--- trunk/Source/WebKit/efl/ChangeLog	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/efl/ChangeLog	2011-12-07 14:54:13 UTC (rev 102235)
@@ -1,3 +1,13 @@
+2011-12-07  Mary Wu  <mary...@torchmobile.com.cn>
+
+        Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
+        https://bugs.webkit.org/show_bug.cgi?id=73986
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * ewk/ewk_main.cpp:
+        (_ewk_init_body):
+
 2011-12-05  Raphael Kubo da Costa  <k...@profusion.mobi>
 
         [EFL] Do not lose message flags when converting to/from Soup Requests/Responses

Modified: trunk/Source/WebKit/efl/ewk/ewk_main.cpp (102234 => 102235)


--- trunk/Source/WebKit/efl/ewk/ewk_main.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/efl/ewk/ewk_main.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -160,7 +160,7 @@
 #endif
 
     WebCore::ScriptController::initializeThreading();
-    WebCore::InitializeLoggingChannelsIfNecessary();
+    WebCore::initializeLoggingChannelsIfNecessary();
     WebCore::Settings::setDefaultMinDOMTimerInterval(0.004);
 
     // Page cache capacity (in pages). Comment from Mac port:

Modified: trunk/Source/WebKit/gtk/ChangeLog (102234 => 102235)


--- trunk/Source/WebKit/gtk/ChangeLog	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/gtk/ChangeLog	2011-12-07 14:54:13 UTC (rev 102235)
@@ -1,3 +1,13 @@
+2011-12-07  Mary Wu  <mary...@torchmobile.com.cn>
+
+        Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
+        https://bugs.webkit.org/show_bug.cgi?id=73986
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * webkit/webkitglobals.cpp:
+        (webkitInit):
+
 2011-12-05  Mario Sanchez Prada  <msanc...@igalia.com>
 
         [GTK] Move emissions of AtkDocument signals down to WebCore

Modified: trunk/Source/WebKit/gtk/webkit/webkitglobals.cpp (102234 => 102235)


--- trunk/Source/WebKit/gtk/webkit/webkitglobals.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/gtk/webkit/webkitglobals.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -310,7 +310,7 @@
     JSC::initializeThreading();
     WTF::initializeMainThread();
 
-    WebCore::InitializeLoggingChannelsIfNecessary();
+    WebCore::initializeLoggingChannelsIfNecessary();
 
     // We make sure the text codecs have been initialized, because
     // that may only be done by the main thread.

Modified: trunk/Source/WebKit/mac/ChangeLog (102234 => 102235)


--- trunk/Source/WebKit/mac/ChangeLog	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/mac/ChangeLog	2011-12-07 14:54:13 UTC (rev 102235)
@@ -1,3 +1,13 @@
+2011-12-07  Mary Wu  <mary...@torchmobile.com.cn>
+
+        Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
+        https://bugs.webkit.org/show_bug.cgi?id=73986
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * WebView/WebView.mm:
+        (-[WebView _commonInitializationWithFrameName:groupName:]):
+
 2011-12-06  Alexey Proskuryakov  <a...@apple.com>
 
         REGRESSION (WebKit2): Kill ring is not cleared when selection changes

Modified: trunk/Source/WebKit/mac/WebView/WebView.mm (102234 => 102235)


--- trunk/Source/WebKit/mac/WebView/WebView.mm	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/mac/WebView/WebView.mm	2011-12-07 14:54:13 UTC (rev 102235)
@@ -714,7 +714,7 @@
     static bool didOneTimeInitialization = false;
     if (!didOneTimeInitialization) {
         WebKitInitializeLoggingChannelsIfNecessary();
-        WebCore::InitializeLoggingChannelsIfNecessary();
+        WebCore::initializeLoggingChannelsIfNecessary();
         [WebHistoryItem initWindowWatcherIfNecessary];
 #if ENABLE(SQL_DATABASE)
         WebKitInitializeDatabasesIfNecessary();

Modified: trunk/Source/WebKit/qt/ChangeLog (102234 => 102235)


--- trunk/Source/WebKit/qt/ChangeLog	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/qt/ChangeLog	2011-12-07 14:54:13 UTC (rev 102235)
@@ -1,3 +1,13 @@
+2011-12-07  Mary Wu  <mary...@torchmobile.com.cn>
+
+        Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
+        https://bugs.webkit.org/show_bug.cgi?id=73986
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * WebCoreSupport/InitWebCoreQt.cpp:
+        (WebCore::initializeWebCoreQt):
+
 2011-12-06  Zeno Albisser  <z...@webkit.org>
 
         [Qt][Mac] Building debug version only fails.

Modified: trunk/Source/WebKit/qt/WebCoreSupport/InitWebCoreQt.cpp (102234 => 102235)


--- trunk/Source/WebKit/qt/WebCoreSupport/InitWebCoreQt.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/qt/WebCoreSupport/InitWebCoreQt.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -51,7 +51,7 @@
     if (initialized)
         return;
 
-    WebCore::InitializeLoggingChannelsIfNecessary();
+    WebCore::initializeLoggingChannelsIfNecessary();
     ScriptController::initializeThreading();
     WTF::initializeMainThread();
     WebCore::SecurityPolicy::setLocalLoadPolicy(WebCore::SecurityPolicy::AllowLocalLoadsForLocalAndSubstituteData);

Modified: trunk/Source/WebKit/win/ChangeLog (102234 => 102235)


--- trunk/Source/WebKit/win/ChangeLog	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/win/ChangeLog	2011-12-07 14:54:13 UTC (rev 102235)
@@ -1,3 +1,13 @@
+2011-12-07  Mary Wu  <mary...@torchmobile.com.cn>
+
+        Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
+        https://bugs.webkit.org/show_bug.cgi?id=73986
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * WebView.cpp:
+        (WebView::initWithFrame):
+
 2011-12-05  Eric Carlson  <eric.carl...@apple.com>
 
         WebKit/mac part of: Add WebKit preferences for text track settings

Modified: trunk/Source/WebKit/win/WebView.cpp (102234 => 102235)


--- trunk/Source/WebKit/win/WebView.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/win/WebView.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -2622,7 +2622,7 @@
 
     static bool didOneTimeInitialization;
     if (!didOneTimeInitialization) {
-        InitializeLoggingChannelsIfNecessary();
+        initializeLoggingChannelsIfNecessary();
 #if ENABLE(SQL_DATABASE)
         WebKitInitializeWebDatabasesIfNecessary();
 #endif

Modified: trunk/Source/WebKit/wx/ChangeLog (102234 => 102235)


--- trunk/Source/WebKit/wx/ChangeLog	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/wx/ChangeLog	2011-12-07 14:54:13 UTC (rev 102235)
@@ -1,3 +1,13 @@
+2011-12-07  Mary Wu  <mary...@torchmobile.com.cn>
+
+        Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
+        https://bugs.webkit.org/show_bug.cgi?id=73986
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * WebView.cpp:
+        (wxWebView::Create):
+
 2011-12-02  Kevin Ollivier  <kev...@theolliviers.com>
 
         [wx] Unreviewed build fixes for Windows build.

Modified: trunk/Source/WebKit/wx/WebView.cpp (102234 => 102235)


--- trunk/Source/WebKit/wx/WebView.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit/wx/WebView.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -387,7 +387,7 @@
 
     m_impl = new WebViewPrivate();
 
-    WebCore::InitializeLoggingChannelsIfNecessary();    
+    WebCore::initializeLoggingChannelsIfNecessary();    
     WebCore::HTMLFrameOwnerElement* parentFrame = 0;
 
     WebCore::EditorClientWx* editorClient = new WebCore::EditorClientWx();

Modified: trunk/Source/WebKit2/ChangeLog (102234 => 102235)


--- trunk/Source/WebKit2/ChangeLog	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit2/ChangeLog	2011-12-07 14:54:13 UTC (rev 102235)
@@ -1,3 +1,15 @@
+2011-12-07  Mary Wu  <mary...@torchmobile.com.cn>
+
+        Change function name InitializeLoggingChannelsIfNecessary to follow coding style guideline
+        https://bugs.webkit.org/show_bug.cgi?id=73986
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        * UIProcess/WebContext.cpp:
+        (WebKit::WebContext::WebContext):
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::WebProcess):
+
 2011-12-07  Zalan Bujtas  <zbuj...@gmail.com>
 
         [Qt][WK2] Enable page cache.

Modified: trunk/Source/WebKit2/UIProcess/WebContext.cpp (102234 => 102235)


--- trunk/Source/WebKit2/UIProcess/WebContext.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit2/UIProcess/WebContext.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -149,7 +149,7 @@
 
     addLanguageChangeObserver(this, languageChanged);
 
-    WebCore::InitializeLoggingChannelsIfNecessary();
+    WebCore::initializeLoggingChannelsIfNecessary();
 
 #ifndef NDEBUG
     webContextCounter.increment();

Modified: trunk/Source/WebKit2/WebProcess/WebProcess.cpp (102234 => 102235)


--- trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2011-12-07 14:51:33 UTC (rev 102234)
+++ trunk/Source/WebKit2/WebProcess/WebProcess.cpp	2011-12-07 14:54:13 UTC (rev 102235)
@@ -154,7 +154,7 @@
     WebPlatformStrategies::initialize();
 #endif // USE(PLATFORM_STRATEGIES)
 
-    WebCore::InitializeLoggingChannelsIfNecessary();
+    WebCore::initializeLoggingChannelsIfNecessary();
 }
 
 void WebProcess::initialize(CoreIPC::Connection::Identifier serverIdentifier, RunLoop* runLoop)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to