<!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>[177328] trunk/Source</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/177328">177328</a></dd>
<dt>Author</dt> <dd>cdumez@apple.com</dd>
<dt>Date</dt> <dd>2014-12-15 18:08:23 -0800 (Mon, 15 Dec 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>[iOS] Add feature counting support
https://bugs.webkit.org/show_bug.cgi?id=139652
&lt;rdar://problem/19255690&gt;

Reviewed by Gavin Barraclough.

Source/JavaScriptCore:

Link against AppSupport framework on iOS as we need it to implement
the new FeatureCounter API in WTF.

* Configurations/JavaScriptCore.xcconfig:

Source/WebCore:

Use FeatureCounter API to log PageCache failure reasons
as well as its success rate.

No new tests, no behavior change.

* history/PageCache.cpp:
(WebCore::logCanCacheFrameDecision):
(WebCore::logCanCachePageDecision):
(WebCore::PageCache::canCache):
* platform/FeatureCounterKeys.h: Added.

Source/WTF:

Add a FeatureCounter API for to log / count when a feature
is used. For now, this is only implementated on iOS.

* WTF.vcxproj/WTF.vcxproj:
* WTF.xcodeproj/project.pbxproj:
* wtf/CMakeLists.txt:
* wtf/FeatureCounter.cpp: Added.
(WTF::incrementFeatureCounterKey):
(WTF::setFeatureCounterKey):
* wtf/FeatureCounter.h: Added.
* wtf/ios/FeatureCounter.mm: Added.
(WTF::incrementFeatureCounterKey):
(WTF::setFeatureCounterKey):</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceJavaScriptCoreChangeLog">trunk/Source/JavaScriptCore/ChangeLog</a></li>
<li><a href="#trunkSourceJavaScriptCoreConfigurationsJavaScriptCorexcconfig">trunk/Source/JavaScriptCore/Configurations/JavaScriptCore.xcconfig</a></li>
<li><a href="#trunkSourceWTFChangeLog">trunk/Source/WTF/ChangeLog</a></li>
<li><a href="#trunkSourceWTFWTFvcxprojWTFvcxproj">trunk/Source/WTF/WTF.vcxproj/WTF.vcxproj</a></li>
<li><a href="#trunkSourceWTFWTFxcodeprojprojectpbxproj">trunk/Source/WTF/WTF.xcodeproj/project.pbxproj</a></li>
<li><a href="#trunkSourceWTFwtfCMakeListstxt">trunk/Source/WTF/wtf/CMakeLists.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorehistoryPageCachecpp">trunk/Source/WebCore/history/PageCache.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWTFwtfFeatureCountercpp">trunk/Source/WTF/wtf/FeatureCounter.cpp</a></li>
<li><a href="#trunkSourceWTFwtfFeatureCounterh">trunk/Source/WTF/wtf/FeatureCounter.h</a></li>
<li><a href="#trunkSourceWTFwtfiosFeatureCountermm">trunk/Source/WTF/wtf/ios/FeatureCounter.mm</a></li>
<li><a href="#trunkSourceWebCoreplatformFeatureCounterKeysh">trunk/Source/WebCore/platform/FeatureCounterKeys.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceJavaScriptCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/ChangeLog (177327 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/ChangeLog        2014-12-16 01:38:36 UTC (rev 177327)
+++ trunk/Source/JavaScriptCore/ChangeLog        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -1,3 +1,16 @@
</span><ins>+2014-12-15  Chris Dumez  &lt;cdumez@apple.com&gt;
+
+        [iOS] Add feature counting support
+        https://bugs.webkit.org/show_bug.cgi?id=139652
+        &lt;rdar://problem/19255690&gt;
+
+        Reviewed by Gavin Barraclough.
+
+        Link against AppSupport framework on iOS as we need it to implement
+        the new FeatureCounter API in WTF.
+
+        * Configurations/JavaScriptCore.xcconfig:
+
</ins><span class="cx"> 2014-12-15  Commit Queue  &lt;commit-queue@webkit.org&gt;
</span><span class="cx"> 
</span><span class="cx">         Unreviewed, rolling out r177284.
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreConfigurationsJavaScriptCorexcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/Configurations/JavaScriptCore.xcconfig (177327 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/Configurations/JavaScriptCore.xcconfig        2014-12-16 01:38:36 UTC (rev 177327)
+++ trunk/Source/JavaScriptCore/Configurations/JavaScriptCore.xcconfig        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -37,7 +37,7 @@
</span><span class="cx"> OTHER_LDFLAGS_HIDE_SYMBOLS = -Wl,-unexported_symbol -Wl,__ZTISt9bad_alloc -Wl,-unexported_symbol -Wl,__ZTISt9exception -Wl,-unexported_symbol -Wl,__ZTSSt9bad_alloc -Wl,-unexported_symbol -Wl,__ZTSSt9exception -Wl,-unexported_symbol -Wl,__ZdlPvS_ -Wl,-unexported_symbol -Wl,__ZnwmPv -Wl,-unexported_symbol -Wl,__ZNKSt3__18functionIFvvEEclEv -Wl,-unexported_symbol -Wl,__ZNSt3__18functionIFvvEEC1EOS2_ -Wl,-unexported_symbol -Wl,__ZNSt3__18functionIFvvEEC2EOS2_ -Wl,-unexported_symbol -Wl,__ZNKSt3__18functionIFvRN3JSC17BytecodeGeneratorEPNS1_10RegisterIDEEEclES3_S5_ -Wl,-unexported_symbol -Wl,__ZNSt3__18functionIFvRN3JSC17BytecodeGeneratorEPNS1_10RegisterIDEEED1Ev -Wl,-unexported_symbol -Wl,__ZNSt3__18functionIFvRN3JSC17BytecodeGeneratorEPNS1_10RegisterIDEEED2Ev -Wl,-unexported_symbol -Wl,__ZNSt3__18functionIFvvEED1Ev -Wl,-unexported_symbol -Wl,__ZNSt3__18functionIFvvEED2Ev -Wl,-unexported_symbol -Wl,__ZTVNSt3__117bad_function_callE -Wl,-all_load;
</span><span class="cx"> 
</span><span class="cx"> OTHER_LDFLAGS_BASE = -lobjc -Wl,-Y,3 $(OTHER_LDFLAGS_HIDE_SYMBOLS);
</span><del>-OTHER_LDFLAGS[sdk=iphone*] = $(inherited) $(OTHER_LDFLAGS_BASE);
</del><ins>+OTHER_LDFLAGS[sdk=iphone*] = $(inherited) $(OTHER_LDFLAGS_BASE) -framework AppSupport;
</ins><span class="cx"> OTHER_LDFLAGS[sdk=macosx*] = $(inherited) $(OTHER_LDFLAGS_BASE) -sub_library libobjc -framework CoreServices;
</span><span class="cx"> 
</span><span class="cx"> SECTORDER_FLAGS[sdk=iphoneos*] = $(SECTORDER_FLAGS_ios_$(CONFIGURATION));
</span></span></pre></div>
<a id="trunkSourceWTFChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WTF/ChangeLog (177327 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WTF/ChangeLog        2014-12-16 01:38:36 UTC (rev 177327)
+++ trunk/Source/WTF/ChangeLog        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -1,3 +1,25 @@
</span><ins>+2014-12-15  Chris Dumez  &lt;cdumez@apple.com&gt;
+
+        [iOS] Add feature counting support
+        https://bugs.webkit.org/show_bug.cgi?id=139652
+        &lt;rdar://problem/19255690&gt;
+
+        Reviewed by Gavin Barraclough.
+
+        Add a FeatureCounter API for to log / count when a feature
+        is used. For now, this is only implementated on iOS.
+
+        * WTF.vcxproj/WTF.vcxproj:
+        * WTF.xcodeproj/project.pbxproj:
+        * wtf/CMakeLists.txt:
+        * wtf/FeatureCounter.cpp: Added.
+        (WTF::incrementFeatureCounterKey):
+        (WTF::setFeatureCounterKey):
+        * wtf/FeatureCounter.h: Added.
+        * wtf/ios/FeatureCounter.mm: Added.
+        (WTF::incrementFeatureCounterKey):
+        (WTF::setFeatureCounterKey):
+
</ins><span class="cx"> 2014-12-12  Anders Carlsson  &lt;andersca@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Get rid of the DONT_FINALIZE_ON_MAIN_THREAD #define
</span></span></pre></div>
<a id="trunkSourceWTFWTFvcxprojWTFvcxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WTF/WTF.vcxproj/WTF.vcxproj (177327 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WTF/WTF.vcxproj/WTF.vcxproj        2014-12-16 01:38:36 UTC (rev 177327)
+++ trunk/Source/WTF/WTF.vcxproj/WTF.vcxproj        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -72,6 +72,7 @@
</span><span class="cx">     &lt;ClCompile Include=&quot;..\wtf\dtoa\strtod.cc&quot; /&gt;
</span><span class="cx">     &lt;ClCompile Include=&quot;..\wtf\FastBitVector.cpp&quot; /&gt;
</span><span class="cx">     &lt;ClCompile Include=&quot;..\wtf\FastMalloc.cpp&quot; /&gt;
</span><ins>+    &lt;ClCompile Include=&quot;..\wtf\FeatureCounter.cpp&quot; /&gt;
</ins><span class="cx">     &lt;ClCompile Include=&quot;..\wtf\FilePrintStream.cpp&quot; /&gt;
</span><span class="cx">     &lt;ClCompile Include=&quot;..\wtf\FunctionDispatcher.cpp&quot; /&gt;
</span><span class="cx">     &lt;ClCompile Include=&quot;..\wtf\gobject\GlibUtilities.cpp&quot;&gt;
</span><span class="lines">@@ -197,6 +198,7 @@
</span><span class="cx">     &lt;ClInclude Include=&quot;..\wtf\dtoa\utils.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;..\wtf\FastBitVector.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;..\wtf\FastMalloc.h&quot; /&gt;
</span><ins>+    &lt;ClInclude Include=&quot;..\wtf\FeatureCounter.h&quot; /&gt;
</ins><span class="cx">     &lt;ClInclude Include=&quot;..\wtf\FeatureDefines.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;..\wtf\FilePrintStream.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;..\wtf\FlipBytes.h&quot; /&gt;
</span><span class="lines">@@ -775,4 +777,4 @@
</span><span class="cx">   &lt;Import Project=&quot;$(VCTargetsPath)\Microsoft.Cpp.targets&quot; /&gt;
</span><span class="cx">   &lt;ImportGroup Label=&quot;ExtensionTargets&quot;&gt;
</span><span class="cx">   &lt;/ImportGroup&gt;
</span><del>-&lt;/Project&gt;
</del><span class="cx">\ No newline at end of file
</span><ins>+&lt;/Project&gt;
</ins></span></pre></div>
<a id="trunkSourceWTFWTFxcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WTF/WTF.xcodeproj/project.pbxproj (177327 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WTF/WTF.xcodeproj/project.pbxproj        2014-12-16 01:38:36 UTC (rev 177327)
+++ trunk/Source/WTF/WTF.xcodeproj/project.pbxproj        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -73,6 +73,9 @@
</span><span class="cx">                 2CDED0EF18115C38004DBA70 /* RunLoopCF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CDED0EE18115C38004DBA70 /* RunLoopCF.cpp */; };
</span><span class="cx">                 2CDED0F318115C85004DBA70 /* RunLoop.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CDED0F118115C85004DBA70 /* RunLoop.cpp */; };
</span><span class="cx">                 2CDED0F418115C85004DBA70 /* RunLoop.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CDED0F218115C85004DBA70 /* RunLoop.h */; };
</span><ins>+                463111841A3F729A00E925A3 /* FeatureCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 463111831A3F729A00E925A3 /* FeatureCounter.h */; };
+                463111861A3F72B800E925A3 /* FeatureCounter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 463111851A3F72B800E925A3 /* FeatureCounter.mm */; };
+                463111881A3F899100E925A3 /* FeatureCounter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 463111871A3F899100E925A3 /* FeatureCounter.cpp */; };
</ins><span class="cx">                 7CBBA07419BB7FDC00BBF025 /* OSObjectPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CBBA07319BB7FDC00BBF025 /* OSObjectPtr.h */; };
</span><span class="cx">                 7CDD7FF8186D291E007433CD /* IteratorAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CDD7FF7186D291E007433CD /* IteratorAdaptors.h */; };
</span><span class="cx">                 7CDD7FFA186D2A54007433CD /* IteratorRange.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CDD7FF9186D2A54007433CD /* IteratorRange.h */; };
</span><span class="lines">@@ -361,6 +364,9 @@
</span><span class="cx">                 2CDED0EE18115C38004DBA70 /* RunLoopCF.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RunLoopCF.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 2CDED0F118115C85004DBA70 /* RunLoop.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RunLoop.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 2CDED0F218115C85004DBA70 /* RunLoop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RunLoop.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                463111831A3F729A00E925A3 /* FeatureCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeatureCounter.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+                463111851A3F72B800E925A3 /* FeatureCounter.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FeatureCounter.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
+                463111871A3F899100E925A3 /* FeatureCounter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FeatureCounter.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 5D247B6214689B8600E78B76 /* libWTF.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libWTF.a; sourceTree = BUILT_PRODUCTS_DIR; };
</span><span class="cx">                 5D247B6E14689C4700E78B76 /* Base.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Base.xcconfig; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 5D247B7014689C4700E78B76 /* DebugRelease.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = DebugRelease.xcconfig; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -616,6 +622,7 @@
</span><span class="cx">                 1FA47C87152502DA00568D1B /* ios */ = {
</span><span class="cx">                         isa = PBXGroup;
</span><span class="cx">                         children = (
</span><ins>+                                463111851A3F72B800E925A3 /* FeatureCounter.mm */,
</ins><span class="cx">                                 1FA47C88152502DA00568D1B /* WebCoreThread.cpp */,
</span><span class="cx">                                 1FA47C89152502DA00568D1B /* WebCoreThread.h */,
</span><span class="cx">                         );
</span><span class="lines">@@ -754,6 +761,8 @@
</span><span class="cx">                                 0FD81AC4154FB22E00983E72 /* FastBitVector.h */,
</span><span class="cx">                                 A8A472A1151A825A004123FF /* FastMalloc.cpp */,
</span><span class="cx">                                 A8A472A2151A825A004123FF /* FastMalloc.h */,
</span><ins>+                                463111871A3F899100E925A3 /* FeatureCounter.cpp */,
+                                463111831A3F729A00E925A3 /* FeatureCounter.h */,
</ins><span class="cx">                                 B38FD7BC168953E80065C969 /* FeatureDefines.h */,
</span><span class="cx">                                 0F9D335B165DBA73005AD387 /* FilePrintStream.cpp */,
</span><span class="cx">                                 0F9D335C165DBA73005AD387 /* FilePrintStream.h */,
</span><span class="lines">@@ -1178,6 +1187,7 @@
</span><span class="cx">                                 1AFDE648195201C300C48FFA /* TypeCastsCF.h in Headers */,
</span><span class="cx">                                 A8A47423151A825B004123FF /* SimpleStats.h in Headers */,
</span><span class="cx">                                 A8A47424151A825B004123FF /* SinglyLinkedList.h in Headers */,
</span><ins>+                                463111841A3F729A00E925A3 /* FeatureCounter.h in Headers */,
</ins><span class="cx">                                 A748745317A0BDAE00FA04CB /* SixCharacterHash.h in Headers */,
</span><span class="cx">                                 A8A47426151A825B004123FF /* Spectrum.h in Headers */,
</span><span class="cx">                                 A8A47428151A825B004123FF /* StackBounds.h in Headers */,
</span><span class="lines">@@ -1345,6 +1355,7 @@
</span><span class="cx">                                 86F46F601A2840EE00CCBF22 /* RefCounter.cpp in Sources */,
</span><span class="cx">                                 A8A4739E151A825B004123FF /* DataLog.cpp in Sources */,
</span><span class="cx">                                 A8A473A0151A825B004123FF /* DateMath.cpp in Sources */,
</span><ins>+                                463111861A3F72B800E925A3 /* FeatureCounter.mm in Sources */,
</ins><span class="cx">                                 A8A473A2151A825B004123FF /* DecimalNumber.cpp in Sources */,
</span><span class="cx">                                 A8A473AE151A825B004123FF /* diy-fp.cc in Sources */,
</span><span class="cx">                                 A8A473B0151A825B004123FF /* double-conversion.cc in Sources */,
</span><span class="lines">@@ -1365,6 +1376,7 @@
</span><span class="cx">                                 CD5497AC15857D0300B5BC30 /* MediaTime.cpp in Sources */,
</span><span class="cx">                                 A8A473EC151A825B004123FF /* MetaAllocator.cpp in Sources */,
</span><span class="cx">                                 A8A473F4151A825B004123FF /* NumberOfCores.cpp in Sources */,
</span><ins>+                                463111881A3F899100E925A3 /* FeatureCounter.cpp in Sources */,
</ins><span class="cx">                                 A8A473F7151A825B004123FF /* OSAllocatorPosix.cpp in Sources */,
</span><span class="cx">                                 93F1993E19D7958D00C2390B /* StringView.cpp in Sources */,
</span><span class="cx">                                 A8A473F9151A825B004123FF /* OSRandomSource.cpp in Sources */,
</span></span></pre></div>
<a id="trunkSourceWTFwtfCMakeListstxt"></a>
<div class="modfile"><h4>Modified: trunk/Source/WTF/wtf/CMakeLists.txt (177327 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WTF/wtf/CMakeLists.txt        2014-12-16 01:38:36 UTC (rev 177327)
+++ trunk/Source/WTF/wtf/CMakeLists.txt        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -24,6 +24,7 @@
</span><span class="cx">     DisallowCType.h
</span><span class="cx">     DoublyLinkedList.h
</span><span class="cx">     FastMalloc.h
</span><ins>+    FeatureCounter.h
</ins><span class="cx">     FeatureDefines.h
</span><span class="cx">     FilePrintStream.h
</span><span class="cx">     FlipBytes.h
</span><span class="lines">@@ -159,6 +160,7 @@
</span><span class="cx">     DecimalNumber.cpp
</span><span class="cx">     FastBitVector.cpp
</span><span class="cx">     FastMalloc.cpp
</span><ins>+    FeatureCounter.cpp
</ins><span class="cx">     FilePrintStream.cpp
</span><span class="cx">     FunctionDispatcher.cpp
</span><span class="cx">     GregorianDateTime.cpp
</span></span></pre></div>
<a id="trunkSourceWTFwtfFeatureCountercpp"></a>
<div class="addfile"><h4>Added: trunk/Source/WTF/wtf/FeatureCounter.cpp (0 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WTF/wtf/FeatureCounter.cpp                                (rev 0)
+++ trunk/Source/WTF/wtf/FeatureCounter.cpp        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -0,0 +1,46 @@
</span><ins>+/*
+ * Copyright (C) 2014 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS &quot;AS IS&quot; AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include &quot;config.h&quot;
+#include &quot;FeatureCounter.h&quot;
+
+namespace WTF {
+
+#if !PLATFORM(IOS)
+
+void incrementFeatureCounterKey(const char* const key)
+{
+    UNUSED_PARAM(key);
+}
+
+void setFeatureCounterKey(const char* const key, int64_t value)
+{
+    UNUSED_PARAM(key);
+    UNUSED_PARAM(value);
+}
+
+#endif
+
+} // namespace WTF
</ins></span></pre></div>
<a id="trunkSourceWTFwtfFeatureCounterh"></a>
<div class="addfile"><h4>Added: trunk/Source/WTF/wtf/FeatureCounter.h (0 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WTF/wtf/FeatureCounter.h                                (rev 0)
+++ trunk/Source/WTF/wtf/FeatureCounter.h        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -0,0 +1,39 @@
</span><ins>+/*
+ * Copyright (C) 2014 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS &quot;AS IS&quot; AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef FeatureCounter_h
+#define FeatureCounter_h
+
+namespace WTF {
+
+WTF_EXPORT_PRIVATE void incrementFeatureCounterKey(const char* const key);
+WTF_EXPORT_PRIVATE void setFeatureCounterKey(const char* const key, int64_t value);
+
+#define FEATURE_COUNTER_INCREMENT_KEY(key)   WTF::incrementFeatureCounterKey(key)
+#define FEATURE_COUNTER_SET_KEY(key, value)  WTF::setFeatureCounterKey(key, value)
+
+} // namespace WTF
+
+#endif // FeatureCounter_h
</ins></span></pre></div>
<a id="trunkSourceWTFwtfiosFeatureCountermm"></a>
<div class="addfile"><h4>Added: trunk/Source/WTF/wtf/ios/FeatureCounter.mm (0 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WTF/wtf/ios/FeatureCounter.mm                                (rev 0)
+++ trunk/Source/WTF/wtf/ios/FeatureCounter.mm        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -0,0 +1,48 @@
</span><ins>+/*
+ * Copyright (C) 2014 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS &quot;AS IS&quot; AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#import &quot;config.h&quot;
+#import &quot;FeatureCounter.h&quot;
+
+#if PLATFORM(IOS)
+#import &lt;AppSupport/CPAggregateDictionary.h&gt;
+
+namespace WTF {
+
+void incrementFeatureCounterKey(const char* const key)
+{
+    NSString *nsKey = [[NSString alloc] initWithCharactersNoCopy:reinterpret_cast&lt;unichar*&gt;(const_cast&lt;char*&gt;(key)) length:strlen(key) freeWhenDone:NO];
+    [[CPAggregateDictionary sharedAggregateDictionary] incrementKey:nsKey];
+}
+
+void setFeatureCounterKey(const char* const key, int64_t value)
+{
+    NSString *nsKey = [[NSString alloc] initWithCharactersNoCopy:reinterpret_cast&lt;unichar*&gt;(const_cast&lt;char*&gt;(key)) length:strlen(key) freeWhenDone:NO];
+    [[CPAggregateDictionary sharedAggregateDictionary] setValue:value forScalarKey:nsKey];
+}
+
+} // namespace WTF
+
+#endif // PLATFORM(IOS)
</ins></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (177327 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-12-16 01:38:36 UTC (rev 177327)
+++ trunk/Source/WebCore/ChangeLog        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -1,3 +1,22 @@
</span><ins>+2014-12-15  Chris Dumez  &lt;cdumez@apple.com&gt;
+
+        [iOS] Add feature counting support
+        https://bugs.webkit.org/show_bug.cgi?id=139652
+        &lt;rdar://problem/19255690&gt;
+
+        Reviewed by Gavin Barraclough.
+
+        Use FeatureCounter API to log PageCache failure reasons
+        as well as its success rate.
+
+        No new tests, no behavior change.
+
+        * history/PageCache.cpp:
+        (WebCore::logCanCacheFrameDecision):
+        (WebCore::logCanCachePageDecision):
+        (WebCore::PageCache::canCache):
+        * platform/FeatureCounterKeys.h: Added.
+
</ins><span class="cx"> 2014-12-15  Beth Dakin  &lt;bdakin@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Speculative build fix.
</span></span></pre></div>
<a id="trunkSourceWebCorehistoryPageCachecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/history/PageCache.cpp (177327 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/history/PageCache.cpp        2014-12-16 01:38:36 UTC (rev 177327)
+++ trunk/Source/WebCore/history/PageCache.cpp        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -1,5 +1,5 @@
</span><span class="cx"> /*
</span><del>- * Copyright (C) 2007 Apple Inc.  All rights reserved.
</del><ins>+ * Copyright (C) 2007, 2014 Apple Inc.  All rights reserved.
</ins><span class="cx">  *
</span><span class="cx">  * Redistribution and use in source and binary forms, with or without
</span><span class="cx">  * modification, are permitted provided that the following conditions
</span><span class="lines">@@ -36,6 +36,7 @@
</span><span class="cx"> #include &quot;DeviceOrientationController.h&quot;
</span><span class="cx"> #include &quot;Document.h&quot;
</span><span class="cx"> #include &quot;DocumentLoader.h&quot;
</span><ins>+#include &quot;FeatureCounterKeys.h&quot;
</ins><span class="cx"> #include &quot;FrameLoader.h&quot;
</span><span class="cx"> #include &quot;FrameLoaderClient.h&quot;
</span><span class="cx"> #include &quot;FrameLoaderStateMachine.h&quot;
</span><span class="lines">@@ -66,6 +67,12 @@
</span><span class="cx"> #if !defined(NDEBUG)
</span><span class="cx"> 
</span><span class="cx"> #define PCLOG(...) LOG(PageCache, &quot;%*s%s&quot;, indentLevel*4, &quot;&quot;, makeString(__VA_ARGS__).utf8().data())
</span><ins>+
+#else
+
+#define PCLOG(...) ((void)0)
+
+#endif // !defined(NDEBUG)
</ins><span class="cx">     
</span><span class="cx"> // Used in histograms, please only add at the end, and do not remove elements (renaming e.g. to &quot;FooEnumUnused1&quot; is fine).
</span><span class="cx"> // This is because statistics may be gathered from histograms between versions over time, and re-using values causes collisions.
</span><span class="lines">@@ -93,6 +100,7 @@
</span><span class="cx">     PCLOG(&quot;+---&quot;);
</span><span class="cx">     if (!frame-&gt;loader().documentLoader()) {
</span><span class="cx">         PCLOG(&quot;   -There is no DocumentLoader object&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureNoDocumentLoaderKey);
</ins><span class="cx">         return 1 &lt;&lt; NoDocumentLoader;
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="lines">@@ -106,6 +114,7 @@
</span><span class="cx">     unsigned rejectReasons = 0;
</span><span class="cx">     if (!frame-&gt;loader().documentLoader()-&gt;mainDocumentError().isNull()) {
</span><span class="cx">         PCLOG(&quot;   -Main document has an error&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureMainDocumentErrorKey);
</ins><span class="cx"> #if !PLATFORM(IOS)
</span><span class="cx">         rejectReasons |= 1 &lt;&lt; MainDocumentError;
</span><span class="cx"> #else
</span><span class="lines">@@ -117,56 +126,71 @@
</span><span class="cx">     }
</span><span class="cx">     if (frame-&gt;loader().documentLoader()-&gt;substituteData().isValid() &amp;&amp; frame-&gt;loader().documentLoader()-&gt;substituteData().failingURL().isEmpty()) {
</span><span class="cx">         PCLOG(&quot;   -Frame is an error page&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureIsErrorPageKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; IsErrorPage;
</span><span class="cx">     }
</span><span class="cx">     if (frame-&gt;loader().subframeLoader().containsPlugins() &amp;&amp; !frame-&gt;page()-&gt;settings().pageCacheSupportsPlugins()) {
</span><span class="cx">         PCLOG(&quot;   -Frame contains plugins&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureHasPlugins);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; HasPlugins;
</span><span class="cx">     }
</span><span class="cx">     if (frame-&gt;document()-&gt;url().protocolIs(&quot;https&quot;)
</span><span class="cx">         &amp;&amp; (frame-&gt;loader().documentLoader()-&gt;response().cacheControlContainsNoCache()
</span><span class="cx">             || frame-&gt;loader().documentLoader()-&gt;response().cacheControlContainsNoStore())) {
</span><ins>+        if (frame-&gt;loader().documentLoader()-&gt;response().cacheControlContainsNoCache())
+            FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureHTTPSNoCacheKey);
+        if (frame-&gt;loader().documentLoader()-&gt;response().cacheControlContainsNoStore())
+            FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureHTTPSNoStoreKey);
</ins><span class="cx">         PCLOG(&quot;   -Frame is HTTPS, and cache control prohibits caching or storing&quot;);
</span><span class="cx">         rejectReasons |= 1 &lt;&lt; IsHttpsAndCacheControlled;
</span><span class="cx">     }
</span><span class="cx"> #if ENABLE(SQL_DATABASE)
</span><span class="cx">     if (DatabaseManager::manager().hasOpenDatabases(frame-&gt;document())) {
</span><span class="cx">         PCLOG(&quot;   -Frame has open database handles&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureHasOpenDatabasesKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; HasDatabaseHandles;
</span><span class="cx">     }
</span><span class="cx"> #endif
</span><span class="cx"> #if ENABLE(SHARED_WORKERS)
</span><span class="cx">     if (SharedWorkerRepository::hasSharedWorkers(frame-&gt;document())) {
</span><span class="cx">         PCLOG(&quot;   -Frame has associated SharedWorkers&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureHasSharedWorkersKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; HasSharedWorkers;
</span><span class="cx">     }
</span><span class="cx"> #endif
</span><span class="cx">     if (!frame-&gt;loader().history().currentItem()) {
</span><span class="cx">         PCLOG(&quot;   -No current history item&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureNoCurrentHistoryItemKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; NoHistoryItem;
</span><span class="cx">     }
</span><span class="cx">     if (frame-&gt;loader().quickRedirectComing()) {
</span><span class="cx">         PCLOG(&quot;   -Quick redirect is coming&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureQuirkRedirectComingKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; QuickRedirectComing;
</span><span class="cx">     }
</span><span class="cx">     if (frame-&gt;loader().documentLoader()-&gt;isLoadingInAPISense()) {
</span><span class="cx">         PCLOG(&quot;   -DocumentLoader is still loading in API sense&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureLoadingAPISenseKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; IsLoadingInAPISense;
</span><span class="cx">     }
</span><span class="cx">     if (frame-&gt;loader().documentLoader()-&gt;isStopping()) {
</span><span class="cx">         PCLOG(&quot;   -DocumentLoader is in the middle of stopping&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureDocumentLoaderStoppingKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; IsStopping;
</span><span class="cx">     }
</span><span class="cx">     if (!frame-&gt;document()-&gt;canSuspendActiveDOMObjects()) {
</span><del>-        PCLOG(&quot;   -The document cannot suspect its active DOM Objects&quot;);
</del><ins>+        PCLOG(&quot;   -The document cannot suspend its active DOM Objects&quot;);
+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureCannotSuspendActiveDOMObjectsKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; CannotSuspendActiveDOMObjects;
</span><span class="cx">     }
</span><span class="cx">     if (!frame-&gt;loader().documentLoader()-&gt;applicationCacheHost()-&gt;canCacheInPageCache()) {
</span><span class="cx">         PCLOG(&quot;   -The DocumentLoader uses an application cache&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureApplicationCacheKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; DocumentLoaderUsesApplicationCache;
</span><span class="cx">     }
</span><span class="cx">     if (!frame-&gt;loader().client().canCachePage()) {
</span><span class="cx">         PCLOG(&quot;   -The client says this frame cannot be cached&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureDeniedByClientKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; ClientDeniesCaching;
</span><span class="cx">     }
</span><span class="cx"> 
</span><span class="lines">@@ -218,38 +242,48 @@
</span><span class="cx"> #if ENABLE(DEVICE_ORIENTATION) &amp;&amp; !PLATFORM(IOS)
</span><span class="cx">     if (DeviceMotionController::isActiveAt(page)) {
</span><span class="cx">         PCLOG(&quot;   -Page is using DeviceMotion&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureDeviceMotionKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; UsesDeviceMotion;
</span><span class="cx">     }
</span><span class="cx">     if (DeviceOrientationController::isActiveAt(page)) {
</span><span class="cx">         PCLOG(&quot;   -Page is using DeviceOrientation&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureDeviceOrientationKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; UsesDeviceOrientation;
</span><span class="cx">     }
</span><span class="cx"> #endif
</span><span class="cx"> #if ENABLE(PROXIMITY_EVENTS)
</span><span class="cx">     if (DeviceProximityController::isActiveAt(page)) {
</span><span class="cx">         PCLOG(&quot;   -Page is using DeviceProximity&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureDeviceProximityKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; UsesDeviceMotion;
</span><span class="cx">     }
</span><span class="cx"> #endif
</span><span class="cx">     FrameLoadType loadType = page-&gt;mainFrame().loader().loadType();
</span><span class="cx">     if (loadType == FrameLoadType::Reload) {
</span><span class="cx">         PCLOG(&quot;   -Load type is: Reload&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureReloadKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; IsReload;
</span><span class="cx">     }
</span><span class="cx">     if (loadType == FrameLoadType::ReloadFromOrigin) {
</span><span class="cx">         PCLOG(&quot;   -Load type is: Reload from origin&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureReloadFromOriginKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; IsReloadFromOrigin;
</span><span class="cx">     }
</span><span class="cx">     if (loadType == FrameLoadType::Same) {
</span><span class="cx">         PCLOG(&quot;   -Load type is: Same&quot;);
</span><ins>+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureSameLoadKey);
</ins><span class="cx">         rejectReasons |= 1 &lt;&lt; IsSameLoad;
</span><span class="cx">     }
</span><span class="cx">     
</span><del>-    PCLOG(rejectReasons ? &quot; Page CANNOT be cached\n--------&quot; : &quot; Page CAN be cached\n--------&quot;);
</del><ins>+    if (rejectReasons) {
+        PCLOG(&quot; Page CANNOT be cached\n--------&quot;);
+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheFailureKey);
+    } else {
+        PCLOG(&quot; Page CAN be cached\n--------&quot;);
+        FEATURE_COUNTER_INCREMENT_KEY(FeatureCounterPageCacheSuccessKey);
+    }
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-#endif // !defined(NDEBUG)
-
</del><span class="cx"> PageCache* pageCache()
</span><span class="cx"> {
</span><span class="cx">     static PageCache* staticPageCache = new PageCache;
</span><span class="lines">@@ -308,9 +342,7 @@
</span><span class="cx">     if (!page)
</span><span class="cx">         return false;
</span><span class="cx">     
</span><del>-#if !defined(NDEBUG)
</del><span class="cx">     logCanCachePageDecision(page);
</span><del>-#endif
</del><span class="cx"> 
</span><span class="cx">     if (memoryPressureHandler().isUnderMemoryPressure())
</span><span class="cx">         return false;
</span></span></pre></div>
<a id="trunkSourceWebCoreplatformFeatureCounterKeysh"></a>
<div class="addfile"><h4>Added: trunk/Source/WebCore/platform/FeatureCounterKeys.h (0 => 177328)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/platform/FeatureCounterKeys.h                                (rev 0)
+++ trunk/Source/WebCore/platform/FeatureCounterKeys.h        2014-12-16 02:08:23 UTC (rev 177328)
</span><span class="lines">@@ -0,0 +1,69 @@
</span><ins>+/*
+ * Copyright (C) 2014 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1.  Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ * 2.  Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in the
+ *     documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS &quot;AS IS&quot; AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef FeatureCounterKeys_h
+#define FeatureCounterKeys_h
+
+#include &lt;wtf/FeatureCounter.h&gt;
+
+namespace WebCore {
+
+// Page cache.
+static const char FeatureCounterPageCacheFailureNoDocumentLoaderKey[] = &quot;com.apple.WebKit.pageCache.failure.noDocumentLoader&quot;;
+static const char FeatureCounterPageCacheFailureMainDocumentErrorKey[] = &quot;com.apple.WebKit.pageCache.failure.mainDocumentError&quot;;
+static const char FeatureCounterPageCacheFailureIsErrorPageKey[] = &quot;com.apple.WebKit.pageCache.failure.isErrorPage&quot;;
+static const char FeatureCounterPageCacheFailureHasPlugins[] = &quot;com.apple.WebKit.pageCache.failure.hasPlugins&quot;;
+static const char FeatureCounterPageCacheFailureHTTPSNoCacheKey[] = &quot;com.apple.WebKit.pageCache.failure.httpsNoCache&quot;;
+static const char FeatureCounterPageCacheFailureHTTPSNoStoreKey[] = &quot;com.apple.WebKit.pageCache.failure.httpsNoStore&quot;;
+#if ENABLE(SQL_DATABASE)
+static const char FeatureCounterPageCacheFailureHasOpenDatabasesKey[] = &quot;com.apple.WebKit.pageCache.failure.hasOpenDatabases&quot;;
+#endif
+#if ENABLE(SHARED_WORKERS)
+static const char FeatureCounterPageCacheFailureHasSharedWorkersKey[] = &quot;com.apple.WebKit.pageCache.failure.hasSharedWorkers&quot;;
+#endif
+static const char FeatureCounterPageCacheFailureNoCurrentHistoryItemKey[] = &quot;com.apple.WebKit.pageCache.failure.noCurrentHistoryItem&quot;;
+static const char FeatureCounterPageCacheFailureQuirkRedirectComingKey[] = &quot;com.apple.WebKit.pageCache.failure.quirkRedirectComing&quot;;
+static const char FeatureCounterPageCacheFailureLoadingAPISenseKey[] = &quot;com.apple.WebKit.pageCache.failure.loadingAPISense&quot;;
+static const char FeatureCounterPageCacheFailureDocumentLoaderStoppingKey[] = &quot;com.apple.WebKit.pageCache.failure.documentLoaderStopping&quot;;
+static const char FeatureCounterPageCacheFailureCannotSuspendActiveDOMObjectsKey[] = &quot;com.apple.WebKit.pageCache.failure.cannotSuspendActiveDOMObjects&quot;;
+static const char FeatureCounterPageCacheFailureApplicationCacheKey[] = &quot;com.apple.WebKit.pageCache.failure.applicationCache&quot;;
+static const char FeatureCounterPageCacheFailureDeniedByClientKey[] = &quot;com.apple.WebKit.pageCache.failure.deniedByClient&quot;;
+#if ENABLE(DEVICE_ORIENTATION)
+static const char FeatureCounterPageCacheFailureDeviceMotionKey[] = &quot;com.apple.WebKit.pageCache.failure.deviceMotion&quot;;
+static const char FeatureCounterPageCacheFailureDeviceOrientationKey[] = &quot;com.apple.WebKit.pageCache.failure.deviceOrientation&quot;;
+#endif
+#if ENABLE(PROXIMITY_EVENTS)
+static const char FeatureCounterPageCacheFailureDeviceProximityKey[] = &quot;com.apple.WebKit.pageCache.failure.deviceProximity&quot;;
+#endif
+static const char FeatureCounterPageCacheFailureReloadKey[] = &quot;com.apple.WebKit.pageCache.failure.reload&quot;;
+static const char FeatureCounterPageCacheFailureReloadFromOriginKey[] = &quot;com.apple.WebKit.pageCache.failure.reloadFromOrigin&quot;;
+static const char FeatureCounterPageCacheFailureSameLoadKey[] = &quot;com.apple.WebKit.pageCache.failure.sameLoad&quot;;
+static const char FeatureCounterPageCacheFailureKey[] = &quot;com.apple.WebKit.pageCache.failure&quot;;
+static const char FeatureCounterPageCacheSuccessKey[] = &quot;com.apple.WebKit.pageCache.success&quot;;
+
+} // namespace WebCore
+
+#endif // FeatureCounterKeys_h
+
</ins></span></pre>
</div>
</div>

</body>
</html>