<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[160445] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/160445">160445</a></dd>
<dt>Author</dt> <dd>zandobersek@gmail.com</dd>
<dt>Date</dt> <dd>2013-12-11 10:23:02 -0800 (Wed, 11 Dec 2013)</dd>
</dl>

<h3>Log Message</h3>
<pre>[GTK][WK2] Add the WebKitBatteryProvider class
https://bugs.webkit.org/show_bug.cgi?id=115720

Reviewed by Martin Robinson.

Source/WebKit2: 

This patch adds the WebKitBatteryProvider class which sets up a BatteryProviderUPower instance,
controlling the provider's activity when instrumented to do so by the WebBatteryManagerProxy
and relaying the battery status updates from the battery provider to the battery manager.

* GNUmakefile.list.am: Add the build targets for the new source files.
* UIProcess/API/gtk/WebKitBatteryProvider.cpp: Added.
(toBatteryProvider): A helper inline method that casts the client info to the battery provider instance.
(startUpdatingCallback): Relays the instruction to the WebKitBattery instance.
(stopUpdatingCallback): Ditto.
(WebKitBatteryProvider::create):
(WebKitBatteryProvider::WebKitBatteryProvider): Set up a WKBatteryProvider and set it to the passed-in battery manager.
(WebKitBatteryProvider::~WebKitBatteryProvider): Force the BatteryProviderUPower to stop updating.
(WebKitBatteryProvider::startUpdating): Relays the instruction to the BatteryProviderUPower instance.
(WebKitBatteryProvider::stopUpdating): Ditto.
(WebKitBatteryProvider::notifyBatteryStatusUnavailable): Update the battery manager with the new status that
has the default values that are to be used when the implementation cannot determine the battery status (as per
the Battery Status API specification).
(WebKitBatteryProvider::notifyBatteryStatusUpdated): Update the battery status.
* UIProcess/API/gtk/WebKitBatteryProvider.h: Added.
(WebKitBatteryProvider): Define the WebKitBatteryProvider reference-counted interface that also inherits from the
BatteryProviderUPowerClient interface.
* UIProcess/API/gtk/WebKitWebContext.cpp:
(_WebKitWebContextPrivate): Add a WebKitBatteryProvider member variable to the struct.
(createDefaultWebContext): Create a new battery provider when initializing the default web context.

Tools: 

* gtk/generate-gtkdoc:
(get_webkit2_options): Ignore the WebKitBatteryProvider source files when generating the documentation.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2GNUmakefilelistam">trunk/Source/WebKit2/GNUmakefile.list.am</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPIgtkWebKitWebContextcpp">trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp</a></li>
<li><a href="#trunkToolsChangeLog">trunk/Tools/ChangeLog</a></li>
<li><a href="#trunkToolsgtkgenerategtkdoc">trunk/Tools/gtk/generate-gtkdoc</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2UIProcessAPIgtkWebKitBatteryProvidercpp">trunk/Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.cpp</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPIgtkWebKitBatteryProviderh">trunk/Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (160444 => 160445)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2013-12-11 18:16:48 UTC (rev 160444)
+++ trunk/Source/WebKit2/ChangeLog        2013-12-11 18:23:02 UTC (rev 160445)
</span><span class="lines">@@ -1,5 +1,37 @@
</span><span class="cx"> 2013-12-11  José Dapena Paz  &lt;jdapena@igalia.com&gt; and Zan Dobersek  &lt;zdobersek@igalia.com&gt;
</span><span class="cx"> 
</span><ins>+        [GTK][WK2] Add the WebKitBatteryProvider class
+        https://bugs.webkit.org/show_bug.cgi?id=115720
+
+        Reviewed by Martin Robinson.
+
+        This patch adds the WebKitBatteryProvider class which sets up a BatteryProviderUPower instance,
+        controlling the provider's activity when instrumented to do so by the WebBatteryManagerProxy
+        and relaying the battery status updates from the battery provider to the battery manager.
+
+        * GNUmakefile.list.am: Add the build targets for the new source files.
+        * UIProcess/API/gtk/WebKitBatteryProvider.cpp: Added.
+        (toBatteryProvider): A helper inline method that casts the client info to the battery provider instance.
+        (startUpdatingCallback): Relays the instruction to the WebKitBattery instance.
+        (stopUpdatingCallback): Ditto.
+        (WebKitBatteryProvider::create):
+        (WebKitBatteryProvider::WebKitBatteryProvider): Set up a WKBatteryProvider and set it to the passed-in battery manager.
+        (WebKitBatteryProvider::~WebKitBatteryProvider): Force the BatteryProviderUPower to stop updating.
+        (WebKitBatteryProvider::startUpdating): Relays the instruction to the BatteryProviderUPower instance.
+        (WebKitBatteryProvider::stopUpdating): Ditto.
+        (WebKitBatteryProvider::notifyBatteryStatusUnavailable): Update the battery manager with the new status that
+        has the default values that are to be used when the implementation cannot determine the battery status (as per
+        the Battery Status API specification).
+        (WebKitBatteryProvider::notifyBatteryStatusUpdated): Update the battery status.
+        * UIProcess/API/gtk/WebKitBatteryProvider.h: Added.
+        (WebKitBatteryProvider): Define the WebKitBatteryProvider reference-counted interface that also inherits from the
+        BatteryProviderUPowerClient interface.
+        * UIProcess/API/gtk/WebKitWebContext.cpp:
+        (_WebKitWebContextPrivate): Add a WebKitBatteryProvider member variable to the struct.
+        (createDefaultWebContext): Create a new battery provider when initializing the default web context.
+
+2013-12-11  José Dapena Paz  &lt;jdapena@igalia.com&gt; and Zan Dobersek  &lt;zdobersek@igalia.com&gt;
+
</ins><span class="cx">         [GTK] Add a UPower-based BatteryProvider
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=115719
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2GNUmakefilelistam"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/GNUmakefile.list.am (160444 => 160445)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/GNUmakefile.list.am        2013-12-11 18:16:48 UTC (rev 160444)
+++ trunk/Source/WebKit2/GNUmakefile.list.am        2013-12-11 18:23:02 UTC (rev 160445)
</span><span class="lines">@@ -724,6 +724,8 @@
</span><span class="cx">         Source/WebKit2/UIProcess/API/gtk/WebKitBackForwardListItem.h \
</span><span class="cx">         Source/WebKit2/UIProcess/API/gtk/WebKitBackForwardListItem.cpp \
</span><span class="cx">         Source/WebKit2/UIProcess/API/gtk/WebKitBackForwardListPrivate.h \
</span><ins>+        Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.cpp \
+        Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.h \
</ins><span class="cx">         Source/WebKit2/UIProcess/API/gtk/WebKitCertificateInfo.cpp \
</span><span class="cx">         Source/WebKit2/UIProcess/API/gtk/WebKitCertificateInfo.h \
</span><span class="cx">         Source/WebKit2/UIProcess/API/gtk/WebKitCertificateInfoPrivate.h \
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPIgtkWebKitBatteryProvidercpp"></a>
<div class="addfile"><h4>Added: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.cpp (0 => 160445)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.cpp                                (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.cpp        2013-12-11 18:23:02 UTC (rev 160445)
</span><span class="lines">@@ -0,0 +1,106 @@
</span><ins>+/*
+ * Copyright (C) 2013 Igalia S.L.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB.  If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#include &quot;config.h&quot;
+#include &quot;WebKitBatteryProvider.h&quot;
+
+#if ENABLE(BATTERY_STATUS)
+
+#include &quot;WebBatteryManagerProxy.h&quot;
+#include &quot;WebBatteryStatus.h&quot;
+#include &lt;limits&gt;
+
+using namespace WebKit;
+
+static inline WebKitBatteryProvider* toBatteryProvider(const void* clientInfo)
+{
+    return static_cast&lt;WebKitBatteryProvider*&gt;(const_cast&lt;void*&gt;(clientInfo));
+}
+
+static void startUpdatingCallback(WKBatteryManagerRef batteryManager, const void* clientInfo)
+{
+    toBatteryProvider(clientInfo)-&gt;startUpdating();
+}
+
+static void stopUpdatingCallback(WKBatteryManagerRef batteryManager, const void* clientInfo)
+{
+    toBatteryProvider(clientInfo)-&gt;stopUpdating();
+}
+
+PassRefPtr&lt;WebKitBatteryProvider&gt; WebKitBatteryProvider::create(WebBatteryManagerProxy* batteryManager)
+{
+    return adoptRef(new WebKitBatteryProvider(batteryManager));
+}
+
+WebKitBatteryProvider::WebKitBatteryProvider(WebBatteryManagerProxy* batteryManager)
+    : m_batteryManager(batteryManager)
+    , m_provider(this)
+{
+    ASSERT(batteryManager);
+
+    WKBatteryProviderV0 wkBatteryProvider = {
+        {
+            0, // version
+            this // clientInfo
+        },
+        startUpdatingCallback,
+        stopUpdatingCallback
+    };
+    WKBatteryManagerSetProvider(toAPI(batteryManager), &amp;wkBatteryProvider.base);
+}
+
+WebKitBatteryProvider::~WebKitBatteryProvider()
+{
+    m_provider.stopUpdating();
+}
+
+void WebKitBatteryProvider::startUpdating()
+{
+    m_provider.startUpdating();
+}
+
+void WebKitBatteryProvider::stopUpdating()
+{
+    m_provider.stopUpdating();
+}
+
+void WebKitBatteryProvider::updateBatteryStatus(WebCore::BatteryProviderUPowerStatus status, double secondsRemaining, double batteryLevel)
+{
+    RefPtr&lt;WebBatteryStatus&gt; batteryStatus;
+
+    switch (status) {
+    case WebCore::NotAvailable:
+        // When an implementation cannot report battery status, the default values should be used.
+        batteryStatus = WebBatteryStatus::create(true, std::numeric_limits&lt;double&gt;::infinity(),
+            std::numeric_limits&lt;double&gt;::infinity(), 1.0);
+        break;
+    case WebCore::Charging:
+        batteryStatus = WebBatteryStatus::create(true, secondsRemaining, 0, batteryLevel);
+        break;
+    case WebCore::Discharging:
+        batteryStatus = WebBatteryStatus::create(false, 0, secondsRemaining, batteryLevel);
+        break;
+    default:
+        ASSERT_NOT_REACHED();
+    }
+
+    m_batteryManager-&gt;providerUpdateBatteryStatus(batteryStatus.get());
+}
+
+#endif // ENABLE(BATTERY_STATUS)
</ins></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPIgtkWebKitBatteryProviderh"></a>
<div class="addfile"><h4>Added: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.h (0 => 160445)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.h                                (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitBatteryProvider.h        2013-12-11 18:23:02 UTC (rev 160445)
</span><span class="lines">@@ -0,0 +1,55 @@
</span><ins>+/*
+ * Copyright (C) 2013 Igalia S.L.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this library; see the file COPYING.LIB.  If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#ifndef WebKitBatteryProvider_h
+#define WebKitBatteryProvider_h
+
+#if ENABLE(BATTERY_STATUS)
+
+#include &quot;WebKitPrivate.h&quot;
+#include &lt;WebCore/BatteryProviderUPowerClient.h&gt;
+#include &lt;WebCore/BatteryProviderUPower.h&gt;
+#include &lt;wtf/PassRefPtr.h&gt;
+#include &lt;wtf/RefCounted.h&gt;
+
+namespace WebKit {
+
+class WebKitBatteryProvider : public RefCounted&lt;WebKitBatteryProvider&gt;, public WebCore::BatteryProviderUPowerClient {
+public:
+    static PassRefPtr&lt;WebKitBatteryProvider&gt; create(WebBatteryManagerProxy*);
+    virtual ~WebKitBatteryProvider();
+
+    void startUpdating();
+    void stopUpdating();
+
+private:
+    WebKitBatteryProvider(WebBatteryManagerProxy*);
+
+    // WebCore::BatteryProviderUPowerClient
+    virtual void updateBatteryStatus(WebCore::BatteryProviderUPowerStatus, double secondsRemaining, double batteryLevel);
+
+    RefPtr&lt;WebBatteryManagerProxy&gt; m_batteryManager;
+    WebCore::BatteryProviderUPower m_provider;
+};
+
+}
+
+#endif // ENABLE(BATTERY_STATUS)
+
+#endif // WebKitBatteryProvider_h
</ins></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPIgtkWebKitWebContextcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp (160444 => 160445)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp        2013-12-11 18:16:48 UTC (rev 160444)
+++ trunk/Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.cpp        2013-12-11 18:23:02 UTC (rev 160445)
</span><span class="lines">@@ -20,9 +20,11 @@
</span><span class="cx"> #include &quot;config.h&quot;
</span><span class="cx"> #include &quot;WebKitWebContext.h&quot;
</span><span class="cx"> 
</span><ins>+#include &quot;WebBatteryManagerProxy.h&quot;
</ins><span class="cx"> #include &quot;WebCertificateInfo.h&quot;
</span><span class="cx"> #include &quot;WebCookieManagerProxy.h&quot;
</span><span class="cx"> #include &quot;WebGeolocationManagerProxy.h&quot;
</span><ins>+#include &quot;WebKitBatteryProvider.h&quot;
</ins><span class="cx"> #include &quot;WebKitCertificateInfoPrivate.h&quot;
</span><span class="cx"> #include &quot;WebKitCookieManagerPrivate.h&quot;
</span><span class="cx"> #include &quot;WebKitDownloadClient.h&quot;
</span><span class="lines">@@ -139,6 +141,9 @@
</span><span class="cx"> #if ENABLE(GEOLOCATION)
</span><span class="cx">     RefPtr&lt;WebKitGeolocationProvider&gt; geolocationProvider;
</span><span class="cx"> #endif
</span><ins>+#if ENABLE(BATTERY_STATUS)
+    RefPtr&lt;WebKitBatteryProvider&gt; batteryProvider;
+#endif
</ins><span class="cx"> #if ENABLE(SPELLCHECK)
</span><span class="cx">     OwnPtr&lt;WebKitTextChecker&gt; textChecker;
</span><span class="cx"> #endif
</span><span class="lines">@@ -211,6 +216,9 @@
</span><span class="cx"> #if ENABLE(GEOLOCATION)
</span><span class="cx">     priv-&gt;geolocationProvider = WebKitGeolocationProvider::create(priv-&gt;context-&gt;supplement&lt;WebGeolocationManagerProxy&gt;());
</span><span class="cx"> #endif
</span><ins>+#if ENABLE(BATTERY_STATUS)
+    priv-&gt;batteryProvider = WebKitBatteryProvider::create(priv-&gt;context-&gt;supplement&lt;WebBatteryManagerProxy&gt;());
+#endif
</ins><span class="cx"> #if ENABLE(SPELLCHECK)
</span><span class="cx">     priv-&gt;textChecker = WebKitTextChecker::create();
</span><span class="cx"> #endif
</span></span></pre></div>
<a id="trunkToolsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Tools/ChangeLog (160444 => 160445)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/ChangeLog        2013-12-11 18:16:48 UTC (rev 160444)
+++ trunk/Tools/ChangeLog        2013-12-11 18:23:02 UTC (rev 160445)
</span><span class="lines">@@ -1,3 +1,13 @@
</span><ins>+2013-12-11  José Dapena Paz  &lt;jdapena@igalia.com&gt; and Zan Dobersek  &lt;zdobersek@igalia.com&gt;
+
+        [GTK][WK2] Add the WebKitBatteryProvider class
+        https://bugs.webkit.org/show_bug.cgi?id=115720
+
+        Reviewed by Martin Robinson.
+
+        * gtk/generate-gtkdoc:
+        (get_webkit2_options): Ignore the WebKitBatteryProvider source files when generating the documentation.
+
</ins><span class="cx"> 2013-12-11  Mark Rowe  &lt;mrowe@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         &lt;https://webkit.org/b/125563&gt; Remove the DumpRenderTree Perl Support module
</span></span></pre></div>
<a id="trunkToolsgtkgenerategtkdoc"></a>
<div class="modfile"><h4>Modified: trunk/Tools/gtk/generate-gtkdoc (160444 => 160445)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/gtk/generate-gtkdoc        2013-12-11 18:16:48 UTC (rev 160444)
+++ trunk/Tools/gtk/generate-gtkdoc        2013-12-11 18:23:02 UTC (rev 160445)
</span><span class="lines">@@ -104,9 +104,10 @@
</span><span class="cx">         'ignored_files': glob.glob(src_path('*Private.h')) + \
</span><span class="cx">                          glob.glob(injected_bundle_src_path('*Private.h')) + \
</span><span class="cx">                          glob.glob(src_path('*Client*')) + \
</span><ins>+                         glob.glob(src_path('WebKitAuthenticationDialog.*')) + \
+                         glob.glob(src_path('WebKitBatteryProvider.*')) + \
</ins><span class="cx">                          glob.glob(src_path('WebKitGeolocationProvider.*')) + \
</span><span class="cx">                          glob.glob(src_path('WebKitTextChecker.*')) + \
</span><del>-                         glob.glob(src_path('WebKitAuthenticationDialog.*')) + \
</del><span class="cx">                          glob.glob(src_path('WebKitWebViewBaseAccessible.*')) + \
</span><span class="cx">                          glob.glob(src_path('WebViewBaseInputMethodFilter.*')) + \
</span><span class="cx">                          glob.glob(derived_sources_path('webkit2gtk', 'webkit2', 'WebKitMarshal.*')) + \
</span></span></pre>
</div>
</div>

</body>
</html>