Skip to content

Commit

Permalink
Update or remove any remaining references to viewvc/blink.
Browse files Browse the repository at this point in the history
[email protected], [email protected]
BUG=617246

Review-Url: https://codereview.chromium.org/2471733003
Cr-Commit-Position: refs/heads/master@{#429438}
  • Loading branch information
dpranke authored and Commit bot committed Nov 2, 2016
1 parent 68d8a74 commit 041e8a4
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 21 deletions.
6 changes: 3 additions & 3 deletions content/common/page_state_serialization.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ bool AppendReferencedFilesFromDocumentState(
if (document_state.empty())
return true;

// This algorithm is adapted from Blink's core/html/FormController.cpp code.
// This algorithm is adapted from Blink's FormController code.
// We only care about how that code worked when this code snapshot was taken
// as this code is only needed for backwards compat.
//
// For reference, see FormController::formStatesFromStateVector at:
// http://src.chromium.org/viewvc/blink/trunk/Source/core/html/FormController.cpp?pathrev=152274
// For reference, see FormController::formStatesFromStateVector in
// third_party/WebKit/Source/core/html/forms/FormController.cpp.

size_t index = 0;

Expand Down
4 changes: 2 additions & 2 deletions media/tools/layout_tests/layouttest_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import layouttest_analyzer_helpers
from layouttest_analyzer_helpers import DEFAULT_REVISION_VIEW_URL
import layouttests
from layouttests import DEFAULT_LAYOUTTEST_SVN_VIEW_LOCATION
from layouttests import DEFAULT_LAYOUTTEST_LOCATION

from test_expectations import TestExpectations
from trend_graph import TrendGraph
Expand Down Expand Up @@ -322,7 +322,7 @@ def UpdateTrendGraph(start_time, analyzer_result_map, diff_map, simple_rev_str,
test_str += name + ','
# This is link to test HTML in SVN.
links += ('<a href="%s%s">%s</a>' %
(DEFAULT_LAYOUTTEST_SVN_VIEW_LOCATION, name, name))
(DEFAULT_LAYOUTTEST_LOCATION, name, name))
if test_str:
anno = '\'' + test_str + '\''
# The annotation of passing rate is a union of all annotations.
Expand Down
1 change: 0 additions & 1 deletion media/tools/layout_tests/layouttest_analyzer_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
'trunk/LayoutTests/platform/chromium/test_expectations.txt')
REVISION_LOG_URL = ('http://build.chromium.org/f/chromium/perf/dashboard/ui/'
'changelog_blink.html?url=/trunk/LayoutTests/%s&range=%d:%d')
DEFAULT_REVISION_VIEW_URL = 'http://src.chromium.org/viewvc/blink?revision=%s'


class AnalyzerResultMap:
Expand Down
7 changes: 2 additions & 5 deletions media/tools/layout_tests/layouttests.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,9 @@

import pysvn

# LayoutTests SVN root location.
DEFAULT_LAYOUTTEST_LOCATION = (
'http://src.chromium.org/blink/trunk/LayoutTests/')
# LayoutTests SVN view link
DEFAULT_LAYOUTTEST_SVN_VIEW_LOCATION = (
'http://src.chromium.org/viewvc/blink/trunk/LayoutTests/')
'https://chromium.googlesource.com/chromium/src/'
'+/master/third_party/WebKit/LayoutTests/')


# When parsing the test HTML file and finding the test description,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Based on:
# http://src.chromium.org/viewvc/blink/trunk/Source/build/scripts/template_expander.py
# Based on third_party/WebKit/Source/build/scripts/template_expander.py.

import imp
import os.path
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This tests starting a new resource load after the load event has finished, then reloading while that load is still in progress. Due to a regression in http://src.chromium.org/viewvc/blink?revision=148684&view=revision, we would overwrite the load type such that the reload will still be executed correctly, but the history entry will be created as though it was a standard load.
This tests starting a new resource load after the load event has finished, then reloading while that load is still in progress. Due to a regression in https://chromium.googlesource.com/chromium/src/+/8b913deb7165a50daa13e6b64300e550cf62a47e, we would overwrite the load type such that the reload will still be executed correctly, but the history entry will be created as though it was a standard load.

============== Back Forward List ==============
curr-> http://127.0.0.1:8000/history/reload-during-load-after-load-event.html
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<body onload="setTimeout(test, 0);">
This tests starting a new resource load after the load event has finished, then reloading while that load is still in progress.
Due to a regression in http://src.chromium.org/viewvc/blink?revision=148684&view=revision, we would overwrite the load type such that
Due to a regression in https://chromium.googlesource.com/chromium/src/+/8b913deb7165a50daa13e6b64300e550cf62a47e, we would overwrite the load type such that
the reload will still be executed correctly, but the history entry will be created as though it was a standard load.
<script>
if (window.testRunner) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Test that if a form is submitted from a document with a base element that sets a target,
the form's target attribute takes precedence over the base's target attribute.
This was regressed in http://src.chromium.org/viewvc/blink/?view=revision&revision=153933
This was regressed in https://chromium.googlesource.com/chromium/src/+/65389334354b996ae8490706d84d5848f5f023e7
This test will timeout if it fails.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<body>
Test that if a form is submitted from a document with a base element that sets a target,<br>
the form's target attribute takes precedence over the base's target attribute.<br>
This was regressed in http://src.chromium.org/viewvc/blink/?view=revision&revision=153933<br>
This was regressed in https://chromium.googlesource.com/chromium/src/+/65389334354b996ae8490706d84d5848f5f023e7<br>
This test will timeout if it fails.<br>
<script>
if (window.testRunner)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
</style>

<!-- Ensure the optimization in https://src.chromium.org/viewvc/blink?view=rev&revision=152046 doesn't break. -->
<!-- Ensure the optimization in https://chromium.googlesource.com/chromium/src/+/b5569d06160fcc6a907d3f41416c7ab1bb4fbcda doesn't break. -->
<div id="div">
This test <img src="resources/bluesquare.png" width="10px" height="10px"> passes if <span>only</span> text is invalidated and <img src="resources/bluesquare.png" width="10px" height="10px"> no <img src="resources/bluesquare.png" width="10px" height="10px"> images.
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def self.diff_header?(line)

SMALLEST_EQUAL_OPERATION = 3

OPENSOURCE_URL = "http://src.chromium.org/viewvc/blink/"
OPENSOURCE_URL = "https://chromium.googlesource.com/chromium/src/+/master/third_party/WebKit/"

OPENSOURCE_DIRS = Set.new %w[
LayoutTests
Expand Down
2 changes: 0 additions & 2 deletions tools/metrics/histograms/histograms.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91033,8 +91033,6 @@ value.
<enum name="MappedCSSProperties" type="int">
<!-- Generated from third_party/WebKit/Source/core/frame/UseCounter.cpp -->

<!-- See http://src.chromium.org/viewvc/blink/trunk/Source/core/page/UseCounter.cpp -->

<int value="1" label="Total Pages Measured"/>
<int value="2" label="color"/>
<int value="3" label="direction"/>
Expand Down

0 comments on commit 041e8a4

Please sign in to comment.