<!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>[164512] 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/164512">164512</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2014-02-21 16:10:53 -0800 (Fri, 21 Feb 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>Web Inspector: Replace binarySearch with lowerBound and upperBound functions
https://bugs.webkit.org/show_bug.cgi?id=118609

Patch by Chi Wai Lau &lt;clau@apple.com&gt; on 2014-02-21
Reviewed by Timothy Hatcher.

Source/WebInspectorUI:

This makes insertionIndexForObjectInListSortedByFunction work in O(log(n)) time instead of O(n).

* UserInterface/BinarySearch.js: Removed.
* UserInterface/Main.html:
* UserInterface/Utilities.js:
* WebInspectorUI.vcxproj/WebInspectorUI.vcxproj:
* WebInspectorUI.vcxproj/WebInspectorUI.vcxproj.filters:

LayoutTests:

* inspector/utilities-expected.txt:
* inspector/utilities.html:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsinspectorutilitiesexpectedtxt">trunk/LayoutTests/inspector/utilities-expected.txt</a></li>
<li><a href="#trunkLayoutTestsinspectorutilitieshtml">trunk/LayoutTests/inspector/utilities.html</a></li>
<li><a href="#trunkSourceWebInspectorUIChangeLog">trunk/Source/WebInspectorUI/ChangeLog</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceMainhtml">trunk/Source/WebInspectorUI/UserInterface/Main.html</a></li>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceUtilitiesjs">trunk/Source/WebInspectorUI/UserInterface/Utilities.js</a></li>
<li><a href="#trunkSourceWebInspectorUIWebInspectorUIvcxprojWebInspectorUIvcxproj">trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.vcxproj</a></li>
<li><a href="#trunkSourceWebInspectorUIWebInspectorUIvcxprojWebInspectorUIvcxprojfilters">trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.vcxproj.filters</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkSourceWebInspectorUIUserInterfaceBinarySearchjs">trunk/Source/WebInspectorUI/UserInterface/BinarySearch.js</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/LayoutTests/ChangeLog        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -1,3 +1,13 @@
</span><ins>+2014-02-21  Chi Wai Lau  &lt;clau@apple.com&gt;
+
+        Web Inspector: Replace binarySearch with lowerBound and upperBound functions
+        https://bugs.webkit.org/show_bug.cgi?id=118609
+
+        Reviewed by Timothy Hatcher.
+
+        * inspector/utilities-expected.txt:
+        * inspector/utilities.html:
+
</ins><span class="cx"> 2014-02-21  Daniel Bates  &lt;dabates@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [Win] fast/table/col-and-colgroup-offsets.html - offsetHeight differs from Mac results
</span></span></pre></div>
<a id="trunkLayoutTestsinspectorutilitiesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/inspector/utilities-expected.txt (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/utilities-expected.txt        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/LayoutTests/inspector/utilities-expected.txt        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -3,6 +3,11 @@
</span><span class="cx"> 
</span><span class="cx"> Running: binaryIndexOfTest
</span><span class="cx"> 
</span><ins>+Running: lowerBoundTest
+
+Running: upperBoundTest
+
+
</ins><span class="cx"> Running: qselectTest
</span><span class="cx"> Array: []
</span><span class="cx"> Reference: {}
</span></span></pre></div>
<a id="trunkLayoutTestsinspectorutilitieshtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/inspector/utilities.html (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/inspector/utilities.html        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/LayoutTests/inspector/utilities.html        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -36,6 +36,68 @@
</span><span class="cx">                 testArray(testArrays[i]);
</span><span class="cx">             next();
</span><span class="cx">         },
</span><ins>+        
+        function lowerBoundTest(next)
+        {
+            var testArrays = [
+                [],
+                [1],
+                [-1, -1, 0, 0, 0, 0, 2, 3, 4, 4, 4, 7, 9, 9, 9]
+            ];
+        
+            function testArray(array, useComparator)
+            {
+                function comparator(a, b)
+                {
+                    return a &lt; b ? -1 : (a &gt; b ? 1 : 0);
+                }
+        
+                for (var value = -2; value &lt;= 12; ++value) {
+                    var index = useComparator ? array.lowerBound(value, comparator) : array.lowerBound(value);
+                    InspectorTest.assertTrue(0 &lt;= index &amp;&amp; index &lt;= array.length, &quot;index is within bounds&quot;);
+                    InspectorTest.assertTrue(index === 0 || array[index - 1] &lt; value, &quot;array[index - 1] &lt; value&quot;);
+                    InspectorTest.assertTrue(index === array.length || array[index] &gt;= value, &quot;array[index] &gt;= value&quot;);
+                    
+                }
+            }
+        
+            for (var i = 0, l = testArrays.length; i &lt; l; ++i) {
+                testArray(testArrays[i], false);
+                testArray(testArrays[i], true);
+            }
+            next();
+        },
+        
+        function upperBoundTest(next)
+        {
+            var testArrays = [
+                [],
+                [1],
+                [-1, -1, 0, 0, 0, 0, 2, 3, 4, 4, 4, 7, 9, 9, 9]
+            ];
+        
+            function testArray(array, useComparator)
+            {
+                function comparator(a, b)
+                {
+                    return a &lt; b ? -1 : (a &gt; b ? 1 : 0);
+                }
+        
+                for (var value = -2; value &lt;= 12; ++value) {
+                    var index = useComparator ? array.upperBound(value, comparator) : array.upperBound(value);
+                    InspectorTest.assertTrue(0 &lt;= index &amp;&amp; index &lt;= array.length, &quot;index is within bounds&quot;);
+                    InspectorTest.assertTrue(index === 0 || array[index - 1] &lt;= value, &quot;array[index - 1] &lt;= value&quot;);
+                    InspectorTest.assertTrue(index === array.length || array[index] &gt; value, &quot;array[index] &gt; value&quot;);
+                }
+            }
+        
+            for (var i = 0, l = testArrays.length; i &lt; l; ++i) {
+                testArray(testArrays[i], false);
+                testArray(testArrays[i], true);
+            }
+            next();
+        },
+        
</ins><span class="cx"> 
</span><span class="cx">         function qselectTest(next)
</span><span class="cx">         {
</span><span class="lines">@@ -60,13 +122,13 @@
</span><span class="cx">                     min: sorted[0],
</span><span class="cx">                     median: sorted[Math.floor(sorted.length / 2)],
</span><span class="cx">                     max: sorted[sorted.length - 1]
</span><del>-                }
</del><ins>+                };
</ins><span class="cx"> 
</span><span class="cx">                 var actual = {
</span><span class="cx">                     min: array.slice(0).qselect(0),
</span><span class="cx">                     median: array.slice(0).qselect(Math.floor(array.length / 2)),
</span><span class="cx">                     max: array.slice(0).qselect(array.length - 1)
</span><del>-                }
</del><ins>+                };
</ins><span class="cx">                 InspectorTest.addResult(&quot;Array: &quot; + JSON.stringify(array));
</span><span class="cx">                 InspectorTest.addResult(&quot;Reference: &quot; + JSON.stringify(reference));
</span><span class="cx">                 InspectorTest.addResult(&quot;Actual:    &quot; + JSON.stringify(actual));
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/ChangeLog (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/ChangeLog        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/Source/WebInspectorUI/ChangeLog        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -1,3 +1,18 @@
</span><ins>+2014-02-21  Chi Wai Lau  &lt;clau@apple.com&gt;
+
+        Web Inspector: Replace binarySearch with lowerBound and upperBound functions
+        https://bugs.webkit.org/show_bug.cgi?id=118609
+
+        Reviewed by Timothy Hatcher.
+
+        This makes insertionIndexForObjectInListSortedByFunction work in O(log(n)) time instead of O(n).
+
+        * UserInterface/BinarySearch.js: Removed.
+        * UserInterface/Main.html:
+        * UserInterface/Utilities.js:
+        * WebInspectorUI.vcxproj/WebInspectorUI.vcxproj:
+        * WebInspectorUI.vcxproj/WebInspectorUI.vcxproj.filters:
+
</ins><span class="cx"> 2014-02-21  Brian Burg  &lt;bburg@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Web Inspector: animate breakpoint tree elements when probe samples are received
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceBinarySearchjs"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebInspectorUI/UserInterface/BinarySearch.js (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/BinarySearch.js        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/Source/WebInspectorUI/UserInterface/BinarySearch.js        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -1,85 +0,0 @@
</span><del>-/*
- * Copyright (C) 2011 Google Inc. All rights reserved.
- * Copyright (C) 2007, 2013 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:
- *
- *     * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *     * 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.
- *     * Neither the name of Google Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
- * OWNER OR 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.
- */
-
-/**
- * @param {*} object
- * @param {Array.&lt;*&gt;} array
- * @param {function(*, *)} comparator
- */
-function binarySearch(object, array, comparator)
-{
-    var first = 0;
-    var last = array.length - 1;
-
-    while (first &lt;= last) {
-        var mid = (first + last) &gt;&gt; 1;
-        var c = comparator(object, array[mid]);
-        if (c &gt; 0)
-            first = mid + 1;
-        else if (c &lt; 0)
-            last = mid - 1;
-        else
-            return mid;
-    }
-
-    // Return the nearest lesser index, &quot;-1&quot; means &quot;0, &quot;-2&quot; means &quot;1&quot;, etc.
-    return -(first + 1);
-}
-
-Object.defineProperty(Array.prototype, &quot;binaryIndexOf&quot;, { value: function(value, comparator)
-{
-    var result = binarySearch(value, this, comparator);
-    return result &gt;= 0 ? result : -1;
-}});
-
-/**
- * @param {*} anObject
- * @param {Array.&lt;*&gt;} aList
- * @param {function(*, *)} aFunction
- */
-function insertionIndexForObjectInListSortedByFunction(anObject, aList, aFunction)
-{
-    var index = binarySearch(anObject, aList, aFunction);
-    if (index &lt; 0)
-        // See binarySearch implementation.
-        return -index - 1;
-    else {
-        // Return the first occurance of an item in the list.
-        while (index &gt; 0 &amp;&amp; aFunction(anObject, aList[index - 1]) === 0)
-            index--;
-        return index;
-    }
-}
-
-function insertObjectIntoSortedArray(value, array, compareFunction)
-{
-   array.splice(insertionIndexForObjectInListSortedByFunction(value, array, compareFunction), 0, value);
-}
</del></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceMainhtml"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Main.html (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Main.html        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/Source/WebInspectorUI/UserInterface/Main.html        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -215,7 +215,6 @@
</span><span class="cx">     &lt;script src=&quot;SourceCode.js&quot;&gt;&lt;/script&gt;
</span><span class="cx">     &lt;script src=&quot;Resource.js&quot;&gt;&lt;/script&gt;
</span><span class="cx">     &lt;script src=&quot;ResourceCollection.js&quot;&gt;&lt;/script&gt;
</span><del>-    &lt;script src=&quot;BinarySearch.js&quot;&gt;&lt;/script&gt;
</del><span class="cx">     &lt;script src=&quot;EditingSupport.js&quot;&gt;&lt;/script&gt;
</span><span class="cx">     &lt;script src=&quot;KeyboardShortcut.js&quot;&gt;&lt;/script&gt;
</span><span class="cx">     &lt;script src=&quot;NavigationBar.js&quot;&gt;&lt;/script&gt;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIUserInterfaceUtilitiesjs"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/UserInterface/Utilities.js (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/UserInterface/Utilities.js        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/Source/WebInspectorUI/UserInterface/Utilities.js        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -426,25 +426,6 @@
</span><span class="cx">     }
</span><span class="cx"> });
</span><span class="cx"> 
</span><del>-Object.defineProperty(Array.prototype, &quot;upperBound&quot;,
-{
-    value: function(value)
-    {
-        var first = 0;
-        var count = this.length;
-        while (count &gt; 0) {
-          var step = count &gt;&gt; 1;
-          var middle = first + step;
-          if (value &gt;= this[middle]) {
-              first = middle + 1;
-              count -= step + 1;
-          } else
-              count = step;
-        }
-        return first;
-    }
-});
-
</del><span class="cx"> Object.defineProperty(String.prototype, &quot;trimMiddle&quot;,
</span><span class="cx"> {
</span><span class="cx">     value: function(maxLength)
</span><span class="lines">@@ -954,3 +935,78 @@
</span><span class="cx"> 
</span><span class="cx">     return new RegExp(regexString, regExpFlags);
</span><span class="cx"> }
</span><ins>+
+Object.defineProperty(Array.prototype, &quot;lowerBound&quot;,
+{
+    // Return index of the leftmost element that is equal or greater
+    // than the specimen object. If there's no such element (i.e. all
+    // elements are smaller than the specimen) returns array.length.
+    // The function works for sorted array.
+    value: function(object, comparator)
+    {
+        function defaultComparator(a, b)
+        {
+            return a - b;
+        }
+        comparator = comparator || defaultComparator;
+        var l = 0;
+        var r = this.length;
+        while (l &lt; r) {
+            var m = (l + r) &gt;&gt; 1;
+            if (comparator(object, this[m]) &gt; 0)
+                l = m + 1;
+            else
+                r = m;
+        }
+        return r;
+    }
+});
+
+Object.defineProperty(Array.prototype, &quot;upperBound&quot;,
+{
+    // Return index of the leftmost element that is greater
+    // than the specimen object. If there's no such element (i.e. all
+    // elements are smaller than the specimen) returns array.length.
+    // The function works for sorted array.
+    value: function(object, comparator)
+    {
+        function defaultComparator(a, b)
+        {
+            return a - b;
+        }
+        comparator = comparator || defaultComparator;
+        var l = 0;
+        var r = this.length;
+        while (l &lt; r) {
+            var m = (l + r) &gt;&gt; 1;
+            if (comparator(object, this[m]) &gt;= 0)
+                l = m + 1;
+            else
+                r = m;
+        }
+        return r;
+    }
+});
+
+Object.defineProperty(Array.prototype, &quot;binaryIndexOf&quot;,
+{
+    value: function(value, comparator)
+    {
+        var index = this.lowerBound(value, comparator);
+        return index &lt; this.length &amp;&amp; comparator(value, this[index]) === 0 ? index : -1;
+    }
+});
+
+function insertionIndexForObjectInListSortedByFunction(object, list, comparator, insertionIndexAfter)
+{
+    if (insertionIndexAfter) {
+        return list.upperBound(object, comparator);
+    } else {
+        return list.lowerBound(object, comparator);
+    }
+}
+
+function insertObjectIntoSortedArray(object, array, comparator)
+{
+    array.splice(insertionIndexForObjectInListSortedByFunction(object, array, comparator), 0, object);
+}
</ins></span></pre></div>
<a id="trunkSourceWebInspectorUIWebInspectorUIvcxprojWebInspectorUIvcxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.vcxproj (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.vcxproj        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.vcxproj        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -236,7 +236,6 @@
</span><span class="cx">     &lt;None Include=&quot;..\UserInterface\ApplicationCacheManifest.js&quot; /&gt;
</span><span class="cx">     &lt;None Include=&quot;..\UserInterface\ApplicationCacheManifestTreeElement.js&quot; /&gt;
</span><span class="cx">     &lt;None Include=&quot;..\UserInterface\ApplicationCacheObserver.js&quot; /&gt;
</span><del>-    &lt;None Include=&quot;..\UserInterface\BinarySearch.js&quot; /&gt;
</del><span class="cx">     &lt;None Include=&quot;..\UserInterface\BlankStylePropertiesSection.js&quot; /&gt;
</span><span class="cx">     &lt;None Include=&quot;..\UserInterface\BottomUpProfileDataGridTree.js&quot; /&gt;
</span><span class="cx">     &lt;None Include=&quot;..\UserInterface\BoxModelDetailsSectionRow.css&quot; /&gt;
</span></span></pre></div>
<a id="trunkSourceWebInspectorUIWebInspectorUIvcxprojWebInspectorUIvcxprojfilters"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.vcxproj.filters (164511 => 164512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.vcxproj.filters        2014-02-22 00:05:25 UTC (rev 164511)
+++ trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.vcxproj.filters        2014-02-22 00:10:53 UTC (rev 164512)
</span><span class="lines">@@ -69,9 +69,6 @@
</span><span class="cx">     &lt;None Include=&quot;..\UserInterface\ApplicationCacheObserver.js&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;UserInterface&lt;/Filter&gt;
</span><span class="cx">     &lt;/None&gt;
</span><del>-    &lt;None Include=&quot;..\UserInterface\BinarySearch.js&quot;&gt;
-      &lt;Filter&gt;UserInterface&lt;/Filter&gt;
-    &lt;/None&gt;
</del><span class="cx">     &lt;None Include=&quot;..\UserInterface\BlankStylePropertiesSection.js&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;UserInterface&lt;/Filter&gt;
</span><span class="cx">     &lt;/None&gt;
</span></span></pre>
</div>
</div>

</body>
</html>