chore: remove WebKit leftovers after it was renamed to Blink (#35966)
This commit is contained in:
parent
ee7cf5a6d4
commit
8212616c76
6 changed files with 6 additions and 7 deletions
|
@ -951,7 +951,6 @@ step-minimize-workspace-size-from-checkout: &step-minimize-workspace-size-from-c
|
||||||
rm -rf src/ios/chrome
|
rm -rf src/ios/chrome
|
||||||
rm -rf src/third_party/blink/web_tests
|
rm -rf src/third_party/blink/web_tests
|
||||||
rm -rf src/third_party/blink/perf_tests
|
rm -rf src/third_party/blink/perf_tests
|
||||||
rm -rf src/third_party/WebKit/LayoutTests
|
|
||||||
rm -rf third_party/electron_node/deps/openssl
|
rm -rf third_party/electron_node/deps/openssl
|
||||||
rm -rf third_party/electron_node/deps/v8
|
rm -rf third_party/electron_node/deps/v8
|
||||||
rm -rf chrome/test/data/xr/webvr_info
|
rm -rf chrome/test/data/xr/webvr_info
|
||||||
|
|
|
@ -149,7 +149,7 @@ for:
|
||||||
if ($env:SAVE_GCLIENT_SRC -eq 'true') {
|
if ($env:SAVE_GCLIENT_SRC -eq 'true') {
|
||||||
# archive current source for future use
|
# archive current source for future use
|
||||||
# only run on x64/woa to avoid contention saving
|
# only run on x64/woa to avoid contention saving
|
||||||
$(7z a $zipfile src -xr!android_webview -xr!electron -xr'!*\.git' -xr!third_party\WebKit\LayoutTests! -xr!third_party\blink\web_tests -xr!third_party\blink\perf_tests -slp -t7z -mmt=30)
|
$(7z a $zipfile src -xr!android_webview -xr!electron -xr'!*\.git' -xr!third_party\blink\web_tests -xr!third_party\blink\perf_tests -slp -t7z -mmt=30)
|
||||||
if ($LASTEXITCODE -ne 0) {
|
if ($LASTEXITCODE -ne 0) {
|
||||||
Write-warning "Could not save source to shared drive; continuing anyway"
|
Write-warning "Could not save source to shared drive; continuing anyway"
|
||||||
}
|
}
|
||||||
|
|
|
@ -146,7 +146,7 @@ $ ninja -C out/Release electron
|
||||||
```
|
```
|
||||||
|
|
||||||
This will build all of what was previously 'libchromiumcontent' (i.e. the
|
This will build all of what was previously 'libchromiumcontent' (i.e. the
|
||||||
`content/` directory of `chromium` and its dependencies, incl. WebKit and V8),
|
`content/` directory of `chromium` and its dependencies, incl. Blink and V8),
|
||||||
so it will take a while.
|
so it will take a while.
|
||||||
|
|
||||||
The built executable will be under `./out/Testing`:
|
The built executable will be under `./out/Testing`:
|
||||||
|
|
|
@ -64,7 +64,7 @@ class SpellCheckClient::SpellcheckRequest {
|
||||||
private:
|
private:
|
||||||
std::u16string text_; // Text to be checked in this task.
|
std::u16string text_; // Text to be checked in this task.
|
||||||
std::vector<Word> word_list_; // List of Words found in text
|
std::vector<Word> word_list_; // List of Words found in text
|
||||||
// The interface to send the misspelled ranges to WebKit.
|
// The interface to send the misspelled ranges to Blink.
|
||||||
std::unique_ptr<blink::WebTextCheckingCompletion> completion_;
|
std::unique_ptr<blink::WebTextCheckingCompletion> completion_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -89,7 +89,7 @@ class SpellCheckClient : public blink::WebSpellCheckPanelHostClient,
|
||||||
SpellcheckCharAttribute character_attributes_;
|
SpellcheckCharAttribute character_attributes_;
|
||||||
|
|
||||||
// Represents word iterators used in this spellchecker. The |text_iterator_|
|
// Represents word iterators used in this spellchecker. The |text_iterator_|
|
||||||
// splits text provided by WebKit into words, contractions, or concatenated
|
// splits text provided by Blink into words, contractions, or concatenated
|
||||||
// words. The |contraction_iterator_| splits a concatenated word extracted by
|
// words. The |contraction_iterator_| splits a concatenated word extracted by
|
||||||
// |text_iterator_| into word components so we can treat a concatenated word
|
// |text_iterator_| into word components so we can treat a concatenated word
|
||||||
// consisting only of correct words as a correct word.
|
// consisting only of correct words as a correct word.
|
||||||
|
@ -97,7 +97,7 @@ class SpellCheckClient : public blink::WebSpellCheckPanelHostClient,
|
||||||
SpellcheckWordIterator contraction_iterator_;
|
SpellcheckWordIterator contraction_iterator_;
|
||||||
|
|
||||||
// The parameters of a pending background-spellchecking request.
|
// The parameters of a pending background-spellchecking request.
|
||||||
// (When WebKit sends two or more requests, we cancel the previous
|
// (When Blink sends two or more requests, we cancel the previous
|
||||||
// requests so we do not have to use vectors.)
|
// requests so we do not have to use vectors.)
|
||||||
std::unique_ptr<SpellcheckRequest> pending_request_param_;
|
std::unique_ptr<SpellcheckRequest> pending_request_param_;
|
||||||
|
|
||||||
|
|
|
@ -341,7 +341,7 @@ describe('node feature', () => {
|
||||||
describe('Buffer', () => {
|
describe('Buffer', () => {
|
||||||
useRemoteContext();
|
useRemoteContext();
|
||||||
|
|
||||||
itremote('can be created from WebKit external string', () => {
|
itremote('can be created from Blink external string', () => {
|
||||||
const p = document.createElement('p');
|
const p = document.createElement('p');
|
||||||
p.innerText = '闲云潭影日悠悠,物换星移几度秋';
|
p.innerText = '闲云潭影日悠悠,物换星移几度秋';
|
||||||
const b = Buffer.from(p.innerText);
|
const b = Buffer.from(p.innerText);
|
||||||
|
|
Loading…
Reference in a new issue