diff options
author | mostynb <mostynb@opera.com> | 2016-02-08 15:27:20 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-08 23:28:49 +0000 |
commit | df175a8c3d1c1060f96d123a5896fdfbe4b3782d (patch) | |
tree | 056469a3d98052b2267706730a1f1877855b0122 | |
parent | 4221ee5c237327bebac80f7d2baa81d8ee18d4dd (diff) | |
download | chromium_src-df175a8c3d1c1060f96d123a5896fdfbe4b3782d.zip chromium_src-df175a8c3d1c1060f96d123a5896fdfbe4b3782d.tar.gz chromium_src-df175a8c3d1c1060f96d123a5896fdfbe4b3782d.tar.bz2 |
update obsolete code.google.com documentation links
This is a documentation-only change.
Disabling presubmit checks, due to "noparent" settings for the following files:
components/policy/resources/policy_templates.json
content/common/font_config_ipc_linux.h
BUG=567488
NOPRESUBMIT=true
TBR=atwilson,dcheng
Review URL: https://codereview.chromium.org/1592403002
Cr-Commit-Position: refs/heads/master@{#374213}
60 files changed, 76 insertions, 85 deletions
diff --git a/base/test/mock_log.cc b/base/test/mock_log.cc index fa511d4..a09000d8 100644 --- a/base/test/mock_log.cc +++ b/base/test/mock_log.cc @@ -56,7 +56,7 @@ bool MockLog::LogMessageHandler(int severity, size_t message_start, const std::string& str) { // gMock guarantees thread-safety for calling a mocked method - // (https://code.google.com/p/googlemock/wiki/CookBook#Using_Google_Mock_and_Threads) + // (https://github.com/google/googlemock/blob/master/googlemock/docs/CookBook.md#using-google-mock-and-threads) // but we also need to make sure that Start/StopCapturingLogs are synchronized // with LogMessageHandler. AutoLock scoped_lock(g_lock); diff --git a/build/common.gypi b/build/common.gypi index 4bc35cc..980de26 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -488,7 +488,7 @@ 'use_sanitizer_options%': 0, # Enable building with SyzyAsan. - # See https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo + # See https://github.com/google/syzygy/wiki/SyzyASanHowTo 'syzyasan%': 0, # Enable crash reporting via Kasko. @@ -629,14 +629,14 @@ # This setting will override the default. # # See - # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders + # https://chromium.googlesource.com/chromium/src/+/master/docs/windows_precompiled_headers.md # for details. 'chromium_win_pch%': 0, # Clang stuff. 'make_clang_dir%': 'third_party/llvm-build/Release+Asserts', # Set this to true when building with Clang. - # See http://code.google.com/p/chromium/wiki/Clang for details. + # See https://chromium.googlesource.com/chromium/src/+/master/docs/clang.md for details. # If this is set, clang is used as both host and target compiler in # cross-compile builds. 'clang%': 0, diff --git a/build/config/sanitizers/sanitizers.gni b/build/config/sanitizers/sanitizers.gni index 0795011..7968114 100644 --- a/build/config/sanitizers/sanitizers.gni +++ b/build/config/sanitizers/sanitizers.gni @@ -34,7 +34,7 @@ declare_args() { # Enable building with SyzyAsan which can find certain types of memory # errors. Only works on Windows. See - # https://code.google.com/p/sawbuck/wiki/SyzyASanHowTo + # https://github.com/google/syzygy/wiki/SyzyASanHowTo is_syzyasan = false # Compile with Control Flow Integrity to protect virtual calls and casts. diff --git a/build/install-build-deps-android.sh b/build/install-build-deps-android.sh index 4d0b3fe..9f1317e 100755 --- a/build/install-build-deps-android.sh +++ b/build/install-build-deps-android.sh @@ -6,7 +6,7 @@ # Script to install everything needed to build chromium on android, including # items requiring sudo privileges. -# See http://code.google.com/p/chromium/wiki/AndroidBuildInstructions +# See https://www.chromium.org/developers/how-tos/android-build-instructions # This script installs the sun-java6 packages (bin, jre and jdk). Sun requires # a license agreement, so upon installation it will prompt the user. To get diff --git a/build/install-build-deps.sh b/build/install-build-deps.sh index d882f25..c0d8d99 100755 --- a/build/install-build-deps.sh +++ b/build/install-build-deps.sh @@ -5,8 +5,7 @@ # found in the LICENSE file. # Script to install everything needed to build chromium (well, ideally, anyway) -# See http://code.google.com/p/chromium/wiki/LinuxBuildInstructions -# and http://code.google.com/p/chromium/wiki/LinuxBuild64Bit +# See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_instructions.md usage() { echo "Usage: $0 [--options]" diff --git a/build/util/lib/common/unittest_util.py b/build/util/lib/common/unittest_util.py index a4fa8ae..010252b 100644 --- a/build/util/lib/common/unittest_util.py +++ b/build/util/lib/common/unittest_util.py @@ -94,7 +94,7 @@ def GetTestName(test): def FilterTestSuite(suite, gtest_filter): """Returns a new filtered tests suite based on the given gtest filter. - See http://code.google.com/p/googletest/wiki/AdvancedGuide + See https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md for gtest_filter specification. """ return unittest.TestSuite(FilterTests(GetTestsFromSuite(suite), gtest_filter)) @@ -118,7 +118,7 @@ def FilterTests(all_tests, gtest_filter): def FilterTestNames(all_tests, gtest_filter): """Filter a list of test names based on the given gtest filter. - See http://code.google.com/p/googletest/wiki/AdvancedGuide + See https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md for gtest_filter specification. Args: diff --git a/chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestGenerator.java b/chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestGenerator.java index d0c3c95..8109950 100644 --- a/chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestGenerator.java +++ b/chrome/android/java/src/org/chromium/chrome/browser/omaha/RequestGenerator.java @@ -47,7 +47,7 @@ public abstract class RequestGenerator { /** * Generates the XML for the current request. - * Follows the format laid out at http://code.google.com/p/omaha/wiki/ServerProtocol + * Follows the format laid out at https://github.com/google/omaha/blob/wiki/ServerProtocolV3.md * with some additional dummy values supplied. */ public String generateXML(String sessionID, String versionName, long installAge, diff --git a/chrome/browser/password_manager/password_store_factory.cc b/chrome/browser/password_manager/password_store_factory.cc index b96eb81..bbb468c 100644 --- a/chrome/browser/password_manager/password_store_factory.cc +++ b/chrome/browser/password_manager/password_store_factory.cc @@ -248,8 +248,9 @@ PasswordStoreFactory::BuildServiceInstanceFor( if (!backend.get()) { LOG(WARNING) << "Using basic (unencrypted) store for password storage. " - "See http://code.google.com/p/chromium/wiki/LinuxPasswordStorage for " - "more information about password storage options."; + "See " + "https://chromium.googlesource.com/chromium/src/+/master/docs/linux_password_storage.md" + " for more information about password storage options."; } ps = new PasswordStoreX(main_thread_runner, db_thread_runner, diff --git a/chrome/common/extensions/api/declarative_content.json b/chrome/common/extensions/api/declarative_content.json index bb9488d..c84a29a 100644 --- a/chrome/common/extensions/api/declarative_content.json +++ b/chrome/common/extensions/api/declarative_content.json @@ -37,7 +37,7 @@ // TODO: "text": { // "type": "array", // "optional": true, -// "description": "Matches if all of the regular expressions in the array match text in the page. The regular expressions use the <a href=\"http://code.google.com/p/re2/wiki/Syntax\">RE2 syntax</a>.", +// "description": "Matches if all of the regular expressions in the array match text in the page. The regular expressions use the <a href=\"https://github.com/google/re2/blob/master/doc/syntax.txt\">RE2 syntax</a>.", // "items": { "type": "string" } }, "isBookmarked": { diff --git a/chrome/common/extensions/docs/templates/articles/themes.html b/chrome/common/extensions/docs/templates/articles/themes.html index 9c1ab65..9b80754 100644 --- a/chrome/common/extensions/docs/templates/articles/themes.html +++ b/chrome/common/extensions/docs/templates/articles/themes.html @@ -132,14 +132,3 @@ using floating-point numbers in the range 0 - 1.0: You can alternatively use <code>-1.0</code> for any of the HSL values to specify <em>no change</em>. </p> - - -<h2 id="moredoc"> Additional documentation </h2> - -<p> -Community-written documentation to help you write themes is here: -</p> - -<blockquote> -<a href="http://code.google.com/p/chromium/wiki/ThemeCreationGuide">http://code.google.com/p/chromium/wiki/ThemeCreationGuide</a> -</blockquote> diff --git a/chrome/test/base/web_ui_browser_test_browsertest.cc b/chrome/test/base/web_ui_browser_test_browsertest.cc index 1e13265..165b4d0 100644 --- a/chrome/test/base/web_ui_browser_test_browsertest.cc +++ b/chrome/test/base/web_ui_browser_test_browsertest.cc @@ -21,7 +21,7 @@ using content::WebUIMessageHandler; // According to the interface for EXPECT_FATAL_FAILURE -// (http://code.google.com/p/googletest/wiki/AdvancedGuide#Catching_Failures) +// (https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md#catching-failures) // the statement must be statically available. Therefore, we make a static // global s_test_ which should point to |this| for the duration of the test run // and be cleared afterward. diff --git a/chrome/test/chromedriver/test/unittest_util.py b/chrome/test/chromedriver/test/unittest_util.py index 7c07312..52363c2 100644 --- a/chrome/test/chromedriver/test/unittest_util.py +++ b/chrome/test/chromedriver/test/unittest_util.py @@ -94,7 +94,7 @@ def GetTestName(test): def FilterTestSuite(suite, gtest_filter): """Returns a new filtered tests suite based on the given gtest filter. - See http://code.google.com/p/googletest/wiki/AdvancedGuide + See https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md for gtest_filter specification. """ return unittest.TestSuite(FilterTests(GetTestsFromSuite(suite), gtest_filter)) @@ -103,7 +103,7 @@ def FilterTestSuite(suite, gtest_filter): def FilterTests(all_tests, gtest_filter): """Returns a filtered list of tests based on the given gtest filter. - See http://code.google.com/p/googletest/wiki/AdvancedGuide + See https://github.com/google/googletest/blob/master/googletest/docs/AdvancedGuide.md for gtest_filter specification. """ pattern_groups = gtest_filter.split('-') diff --git a/components/json_schema/json_schema_validator.h b/components/json_schema/json_schema_validator.h index e570dc5..f3a5edf 100644 --- a/components/json_schema/json_schema_validator.h +++ b/components/json_schema/json_schema_validator.h @@ -52,7 +52,7 @@ class Value; // if present, "additionalProperties" is to be a schema against which all // additional properties will be validated. // - regular expression supports all syntaxes that re2 accepts. -// See https://code.google.com/p/re2/wiki/Syntax for details. +// See https://github.com/google/re2/blob/master/doc/syntax.txt for details. //============================================================================== class JSONSchemaValidator { public: diff --git a/components/nacl/loader/nacl_helper_linux.h b/components/nacl/loader/nacl_helper_linux.h index 644e26b..161a8d6 100644 --- a/components/nacl/loader/nacl_helper_linux.h +++ b/components/nacl/loader/nacl_helper_linux.h @@ -24,7 +24,7 @@ enum NaClZygoteIPCCommand { // The next set of constants define global Linux file descriptors. // For communications between NaCl loader and browser. // See also content/common/zygote_main_linux.cc and -// http://code.google.com/p/chromium/wiki/LinuxZygote +// https://chromium.googlesource.com/chromium/src/+/master/docs/linux_zygote.md // For communications between NaCl loader and zygote. #define kNaClZygoteDescriptor 3 diff --git a/components/nacl/loader/nacl_main_platform_delegate_linux.cc b/components/nacl/loader/nacl_main_platform_delegate_linux.cc index 8e7be40..a592454 100644 --- a/components/nacl/loader/nacl_main_platform_delegate_linux.cc +++ b/components/nacl/loader/nacl_main_platform_delegate_linux.cc @@ -7,7 +7,7 @@ void NaClMainPlatformDelegate::EnableSandbox( const content::MainFunctionParams& parameters) { // The setuid sandbox is started in the zygote process: zygote_main_linux.cc - // http://code.google.com/p/chromium/wiki/LinuxSUIDSandbox + // https://chromium.googlesource.com/chromium/src/+/master/docs/linux_suid_sandbox.md // // The seccomp sandbox is started in the renderer. // http://code.google.com/p/seccompsandbox/ diff --git a/components/policy/resources/policy_templates.json b/components/policy/resources/policy_templates.json index 498ebe9..85d5001 100644 --- a/components/policy/resources/policy_templates.json +++ b/components/policy/resources/policy_templates.json @@ -63,7 +63,7 @@ # Windows ignore this. Policies on Mac are using this instead of caption. # # Non-translateable strings should be tagged using <ph name="..."></ph> as -# described in https://code.google.com/p/grit-i18n/wiki/GritUsersGuide. +# described in https://www.chromium.org/developers/tools-we-use-in-chromium/grit/grit-users-guide # # Generated grd names: # Each name has two parts: the second part is either CAPTION, DESC or LABEL, diff --git a/components/update_client/update_response.h b/components/update_client/update_response.h index 003474f..8341d28 100644 --- a/components/update_client/update_response.h +++ b/components/update_client/update_response.h @@ -14,7 +14,7 @@ namespace update_client { // Parses responses for the update protocol version 3. -// (http://code.google.com/p/omaha/wiki/ServerProtocol) +// (https://github.com/google/omaha/blob/wiki/ServerProtocolV3.md) // // An update response looks like this: // diff --git a/content/app/strings/content_strings.grd b/content/app/strings/content_strings.grd index e56c685..264704f 100644 --- a/content/app/strings/content_strings.grd +++ b/content/app/strings/content_strings.grd @@ -39,7 +39,8 @@ below: <outputs> <!-- TODO add each of your output files. Modify the three below, and add your own for your various languages. See the user's guide - (http://wiki/Main/GritUsersGuide) for more details. + (https://www.chromium.org/developers/tools-we-use-in-chromium/grit/grit-users-guide) + for more details. Note that all output references are relative to the output directory which is specified at build time. --> <output filename="grit/content_strings.h" type="rc_header"> diff --git a/content/browser/indexed_db/indexed_db_transaction_unittest.cc b/content/browser/indexed_db/indexed_db_transaction_unittest.cc index 9842968..dbe63ac 100644 --- a/content/browser/indexed_db/indexed_db_transaction_unittest.cc +++ b/content/browser/indexed_db/indexed_db_transaction_unittest.cc @@ -43,7 +43,7 @@ class IndexedDBTransactionTest : public testing::Test { void CreateDB() { // DB is created here instead of the constructor to workaround a // "peculiarity of C++". More info at - // https://code.google.com/p/googletest/wiki/FAQ#My_compiler_complains_that_a_constructor_(or_destructor)_cannot + // https://github.com/google/googletest/blob/master/googletest/docs/FAQ.md#my-compiler-complains-that-a-constructor-or-destructor-cannot-return-a-value-whats-going-on leveldb::Status s; db_ = IndexedDBDatabase::Create(base::ASCIIToUTF16("db"), backing_store_.get(), diff --git a/content/browser/renderer_host/sandbox_ipc_linux.h b/content/browser/renderer_host/sandbox_ipc_linux.h index a11a878..5a487ef 100644 --- a/content/browser/renderer_host/sandbox_ipc_linux.h +++ b/content/browser/renderer_host/sandbox_ipc_linux.h @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// http://code.google.com/p/chromium/wiki/LinuxSandboxIPC +// https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ipc.md #ifndef CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_LINUX_H_ #define CONTENT_BROWSER_RENDERER_HOST_SANDBOX_IPC_LINUX_H_ diff --git a/content/common/font_config_ipc_linux.h b/content/common/font_config_ipc_linux.h index 472c2f1..1fcee65 100644 --- a/content/common/font_config_ipc_linux.h +++ b/content/common/font_config_ipc_linux.h @@ -31,7 +31,7 @@ namespace content { // FontConfig implementation for Skia that proxies out of process to get out -// of the sandbox. See http://code.google.com/p/chromium/wiki/LinuxSandboxIPC +// of the sandbox. See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ipc.md class FontConfigIPC : public SkFontConfigInterface { public: explicit FontConfigIPC(int fd); diff --git a/content/common/sandbox_linux/sandbox_linux.h b/content/common/sandbox_linux/sandbox_linux.h index 0a80479..7ce723b 100644 --- a/content/common/sandbox_linux/sandbox_linux.h +++ b/content/common/sandbox_linux/sandbox_linux.h @@ -42,7 +42,7 @@ namespace content { class LinuxSandbox { public: // This is a list of sandbox IPC methods which the renderer may send to the - // sandbox host. See http://code.google.com/p/chromium/wiki/LinuxSandboxIPC + // sandbox host. See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ipc.md // This isn't the full list, values < 32 are reserved for methods called from // Skia. enum LinuxSandboxIPCMethods { diff --git a/content/public/browser/zygote_host_linux.h b/content/public/browser/zygote_host_linux.h index e12f8db2..537d6d3 100644 --- a/content/public/browser/zygote_host_linux.h +++ b/content/public/browser/zygote_host_linux.h @@ -12,7 +12,7 @@ namespace content { -// http://code.google.com/p/chromium/wiki/LinuxZygote +// https://chromium.googlesource.com/chromium/src/+/master/docs/linux_zygote.md // The zygote host is an interface, in the browser process, to the zygote // process. diff --git a/content/public/common/content_descriptors.h b/content/public/common/content_descriptors.h index 17d160e..a3077cd 100644 --- a/content/public/common/content_descriptors.h +++ b/content/public/common/content_descriptors.h @@ -12,7 +12,7 @@ // base::GlobalDescriptors object (see base/posix/global_descriptors.h) enum { kCrashDumpSignal = kIPCDescriptorMax, - kSandboxIPCChannel, // http://code.google.com/p/chromium/LinuxSandboxIPC + kSandboxIPCChannel, // https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ipc.md #if defined(V8_USE_EXTERNAL_STARTUP_DATA) kV8NativesDataDescriptor, diff --git a/content/renderer/renderer_main_platform_delegate_linux.cc b/content/renderer/renderer_main_platform_delegate_linux.cc index 4a632b3..5743abd 100644 --- a/content/renderer/renderer_main_platform_delegate_linux.cc +++ b/content/renderer/renderer_main_platform_delegate_linux.cc @@ -30,7 +30,7 @@ void RendererMainPlatformDelegate::PlatformUninitialize() { bool RendererMainPlatformDelegate::EnableSandbox() { // The setuid sandbox is started in the zygote process: zygote_main_linux.cc - // http://code.google.com/p/chromium/wiki/LinuxSUIDSandbox + // https://chromium.googlesource.com/chromium/src/+/master/docs/linux_suid_sandbox.md // // Anything else is started in InitializeSandbox(). LinuxSandbox::InitializeSandbox(); diff --git a/content/zygote/zygote_linux.cc b/content/zygote/zygote_linux.cc index c40538a..cab4722 100644 --- a/content/zygote/zygote_linux.cc +++ b/content/zygote/zygote_linux.cc @@ -46,7 +46,7 @@ #include "sandbox/linux/services/credentials.h" #include "sandbox/linux/services/namespace_sandbox.h" -// See http://code.google.com/p/chromium/wiki/LinuxZygote +// See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_zygote.md namespace content { @@ -108,7 +108,7 @@ bool Zygote::ProcessRequests() { // A SOCK_SEQPACKET socket is installed in fd 3. We get commands from the // browser on it. // A SOCK_DGRAM is installed in fd 5. This is the sandbox IPC channel. - // See http://code.google.com/p/chromium/wiki/LinuxSandboxIPC + // See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ipc.md // We need to accept SIGCHLD, even though our handler is a no-op because // otherwise we cannot wait on children. (According to POSIX 2001.) diff --git a/content/zygote/zygote_main_linux.cc b/content/zygote/zygote_main_linux.cc index 8a3221a..c30e108 100644 --- a/content/zygote/zygote_main_linux.cc +++ b/content/zygote/zygote_main_linux.cc @@ -84,7 +84,7 @@ void RunTwoClosures(const base::Closure* first, const base::Closure* second) { } // namespace -// See http://code.google.com/p/chromium/wiki/LinuxZygote +// See https://chromium.googlesource.com/chromium/src/+/master/docs/linux_zygote.md static void ProxyLocaltimeCallToBrowser(time_t input, struct tm* output, char* timezone_out, @@ -148,7 +148,7 @@ static bool g_am_zygote_or_renderer = false; // // Our replacement functions can check this global and either proxy // the call to the browser over the sandbox IPC -// (http://code.google.com/p/chromium/wiki/LinuxSandboxIPC) or they can use +// (https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ipc.md) or they can use // dlsym with RTLD_NEXT to resolve the symbol, ignoring any symbols in the // current module. // diff --git a/docs/layout_tests_linux.md b/docs/layout_tests_linux.md index 154e334..d113043 100644 --- a/docs/layout_tests_linux.md +++ b/docs/layout_tests_linux.md @@ -1,6 +1,6 @@ # Running layout tests on Linux -1. Build `blink_tests` (see LinuxBuildInstructions) +1. Build `blink_tests` (see [Linux-specific build instructions](https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_instructions.md)) 1. Checkout the layout tests * If you have an entry in your `.gclient` file that includes "LayoutTests", you may need to comment it out and sync. diff --git a/docs/linux_sandboxing.md b/docs/linux_sandboxing.md index cb6ea15..9d9db39 100644 --- a/docs/linux_sandboxing.md +++ b/docs/linux_sandboxing.md @@ -148,4 +148,4 @@ Sandboxing can make developing harder, see: ## See also * [LinuxSandboxIPC](linux_sandbox_ipc.md) -* [How Chromium's Linux sandbox affects Native Client](https://code.google.com/p/nativeclient/wiki/LinuxOuterSandbox) +* [How Chromium's Linux sandbox affects Native Client](https://chromium.googlesource.com/native_client/src/native_client.git/+/master/docs/linux_outer_sandbox.md) diff --git a/extensions/common/api/declarative_web_request.json b/extensions/common/api/declarative_web_request.json index bfb7082..f504070 100644 --- a/extensions/common/api/declarative_web_request.json +++ b/extensions/common/api/declarative_web_request.json @@ -184,7 +184,7 @@ }, { "id": "declarativeWebRequest.RedirectByRegEx", - "description": "Redirects a request by applying a regular expression on the URL. The regular expressions use the <a href=\"http://code.google.com/p/re2/wiki/Syntax\">RE2 syntax</a>.", + "description": "Redirects a request by applying a regular expression on the URL. The regular expressions use the <a href=\"https://github.com/google/re2/blob/master/doc/syntax.txt\">RE2 syntax</a>.", "type": "object", "properties": { "instanceType": { diff --git a/extensions/common/api/events.json b/extensions/common/api/events.json index d3ab871..ba31dea 100644 --- a/extensions/common/api/events.json +++ b/extensions/common/api/events.json @@ -292,12 +292,12 @@ }, "urlMatches": { "type": "string", - "description": "Matches if the URL (without fragment identifier) matches a specified regular expression. Port numbers are stripped from the URL if they match the default port number. The regular expressions use the <a href=\"http://code.google.com/p/re2/wiki/Syntax\">RE2 syntax</a>.", + "description": "Matches if the URL (without fragment identifier) matches a specified regular expression. Port numbers are stripped from the URL if they match the default port number. The regular expressions use the <a href=\"https://github.com/google/re2/blob/master/doc/syntax.txt\">RE2 syntax</a>.", "optional": true }, "originAndPathMatches": { "type": "string", - "description": "Matches if the URL without query segment and fragment identifier matches a specified regular expression. Port numbers are stripped from the URL if they match the default port number. The regular expressions use the <a href=\"http://code.google.com/p/re2/wiki/Syntax\">RE2 syntax</a>.", + "description": "Matches if the URL without query segment and fragment identifier matches a specified regular expression. Port numbers are stripped from the URL if they match the default port number. The regular expressions use the <a href=\"https://github.com/google/re2/blob/master/doc/syntax.txt\">RE2 syntax</a>.", "optional": true }, "urlPrefix": { diff --git a/gpu/config/gpu_control_list_format.txt b/gpu/config/gpu_control_list_format.txt index ae812bb..4e2df42 100644 --- a/gpu/config/gpu_control_list_format.txt +++ b/gpu/config/gpu_control_list_format.txt @@ -79,4 +79,4 @@ // INT is very much like FLOAT, except that the values need to be integers. // // String pattern syntax can be found at -// https://code.google.com/p/re2/wiki/Syntax. +// https://github.com/google/re2/blob/master/doc/syntax.txt diff --git a/remoting/base/dispatch_win.h.pump b/remoting/base/dispatch_win.h.pump index 41dc8bc..51d4236 100644 --- a/remoting/base/dispatch_win.h.pump +++ b/remoting/base/dispatch_win.h.pump @@ -2,7 +2,7 @@ $$ This is a pump file for generating file templates. Pump is a python $$ script that is part of the Google Test suite of utilities. Description $$ can be found here: $$ -$$ http://code.google.com/p/googletest/wiki/PumpManual +$$ https://github.com/google/googletest/blob/master/googletest/docs/PumpManual.md $$ MAX_ARITY controls the number of arguments that dispatch::Invoke() supports. $$ It is choosen to match the number of arguments base::Bind() supports. diff --git a/third_party/WebKit/Source/bindings/core/v8/generated.gyp b/third_party/WebKit/Source/bindings/core/v8/generated.gyp index 050d030..c0607aa 100644 --- a/third_party/WebKit/Source/bindings/core/v8/generated.gyp +++ b/third_party/WebKit/Source/bindings/core/v8/generated.gyp @@ -29,7 +29,7 @@ 'target_name': 'bindings_core_v8_generated_individual', 'type': 'none', # The 'binding' rule generates .h files, so mark as hard_dependency, per: - # https://code.google.com/p/gyp/wiki/InputFormatReference#Linking_Dependencies + # https://gyp.gsrc.io/docs/InputFormatReference.md#Linking-Dependencies 'hard_dependency': 1, 'dependencies': [ '../../../core/core_generated.gyp:generated_testing_idls', diff --git a/third_party/WebKit/Source/bindings/modules/v8/generated.gyp b/third_party/WebKit/Source/bindings/modules/v8/generated.gyp index 23a6bd2..7c24411 100644 --- a/third_party/WebKit/Source/bindings/modules/v8/generated.gyp +++ b/third_party/WebKit/Source/bindings/modules/v8/generated.gyp @@ -26,7 +26,7 @@ 'target_name': 'bindings_modules_v8_generated_individual', 'type': 'none', # The 'binding' rule generates .h files, so mark as hard_dependency, per: - # https://code.google.com/p/gyp/wiki/InputFormatReference#Linking_Dependencies + # https://gyp.gsrc.io/docs/InputFormatReference.md#Linking-Dependencies 'hard_dependency': 1, 'dependencies': [ '../../core/generated.gyp:core_global_constructors_idls', @@ -172,7 +172,7 @@ 'target_name': 'bindings_modules_v8_generated_partial_individual', 'type': 'none', # The 'partial_binding' rule generates .h files, so mark as hard_dependency, per: - # https://code.google.com/p/gyp/wiki/InputFormatReference#Linking_Dependencies + # https://gyp.gsrc.io/docs/InputFormatReference.md#Linking-Dependencies 'hard_dependency': 1, 'dependencies': [ '../../core/generated.gyp:core_global_constructors_idls', diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js b/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js index 71b7fc5..f98426b 100644 --- a/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js +++ b/third_party/WebKit/Source/devtools/front_end/sdk/SourceMap.js @@ -60,7 +60,7 @@ SourceMapV3.Offset = function() } /** - * Implements Source Map V3 model. See http://code.google.com/p/closure-compiler/wiki/SourceMaps + * Implements Source Map V3 model. See https://github.com/google/closure-compiler/wiki/Source-Maps * for format description. * @constructor * @param {string} compiledURL diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py index 418f1f8..fccd5b8 100644 --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py @@ -412,7 +412,7 @@ class AndroidPort(base.Port): # Android has aac and mp3 codecs built in. PORT_HAS_AUDIO_CODECS_BUILT_IN = True - BUILD_REQUIREMENTS_URL = 'https://code.google.com/p/chromium/wiki/AndroidBuildInstructions' + BUILD_REQUIREMENTS_URL = 'https://www.chromium.org/developers/how-tos/android-build-instructions' def __init__(self, host, port_name, **kwargs): super(AndroidPort, self).__init__(host, port_name, **kwargs) @@ -516,7 +516,7 @@ class AndroidPort(base.Port): if not result: _log.error('For complete Android build requirements, please see:') _log.error('') - _log.error(' http://code.google.com/p/chromium/wiki/AndroidBuildInstructions') + _log.error(' https://www.chromium.org/developers/how-tos/android-build-instructions') return test_run_results.UNEXPECTED_ERROR_EXIT_STATUS return self._check_devices(printer) diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py index 4b403f7..7ccf4c9 100644 --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py @@ -52,7 +52,7 @@ class LinuxPort(base.Port): DEFAULT_BUILD_DIRECTORIES = ('out',) - BUILD_REQUIREMENTS_URL = 'https://code.google.com/p/chromium/wiki/LinuxBuildInstructions' + BUILD_REQUIREMENTS_URL = 'https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_instructions.md' @classmethod def _determine_driver_path_statically(cls, host, options): @@ -130,7 +130,7 @@ class LinuxPort(base.Port): if result: _log.error('For complete Linux build requirements, please see:') _log.error('') - _log.error(' http://code.google.com/p/chromium/wiki/LinuxBuildInstructions') + _log.error(' https://chromium.googlesource.com/chromium/src/+/master/docs/linux_build_instructions.md') return result def look_for_new_crash_logs(self, crashed_processes, start_time): diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/mac.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/mac.py index 4a4d3ac..80d5a0a 100644 --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/mac.py +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/mac.py @@ -60,7 +60,7 @@ class MacPort(base.Port): CONTENT_SHELL_NAME = 'Content Shell' - BUILD_REQUIREMENTS_URL = 'https://code.google.com/p/chromium/wiki/MacBuildInstructions' + BUILD_REQUIREMENTS_URL = 'https://chromium.googlesource.com/chromium/src/+/master/docs/mac_build_instructions.md' @classmethod def determine_full_port_name(cls, host, options, port_name): @@ -84,7 +84,7 @@ class MacPort(base.Port): if result: _log.error('For complete Mac build requirements, please see:') _log.error('') - _log.error(' http://code.google.com/p/chromium/wiki/MacBuildInstructions') + _log.error(' https://chromium.googlesource.com/chromium/src/+/master/docs/mac_build_instructions.md') return result diff --git a/third_party/WebKit/public/platform/linux/WebSandboxSupport.h b/third_party/WebKit/public/platform/linux/WebSandboxSupport.h index 2387960..3d6e801 100644 --- a/third_party/WebKit/public/platform/linux/WebSandboxSupport.h +++ b/third_party/WebKit/public/platform/linux/WebSandboxSupport.h @@ -41,7 +41,7 @@ struct WebFontRenderStyle; // Put methods here that are required due to sandbox restrictions. // These are currently only implemented only on Linux: -// https://code.google.com/p/chromium/wiki/LinuxSandboxIPC +// https://chromium.googlesource.com/chromium/src/+/master/docs/linux_sandbox_ipc.md class WebSandboxSupport { public: // Get information to instantiate a font which contains glyphs for the given Unicode code-point. diff --git a/third_party/closure_compiler/compiled_resources.gyp b/third_party/closure_compiler/compiled_resources.gyp index 28ae455..59cb97d 100644 --- a/third_party/closure_compiler/compiled_resources.gyp +++ b/third_party/closure_compiler/compiled_resources.gyp @@ -7,7 +7,7 @@ # http://build.chromium.org/p/chromium.fyi/builders/Closure%20Compilation%20Linux # # Also, see our guide to Closure compilation in chrome: -# https://code.google.com/p/chromium/wiki/ClosureCompilation +# https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md { 'targets': [ { diff --git a/third_party/closure_compiler/compiled_resources2.gyp b/third_party/closure_compiler/compiled_resources2.gyp index e76bf5b..72eac65 100644 --- a/third_party/closure_compiler/compiled_resources2.gyp +++ b/third_party/closure_compiler/compiled_resources2.gyp @@ -7,7 +7,7 @@ # http://build.chromium.org/p/chromium.fyi/builders/Closure%20Compilation%20Linux # # Also, see our guide to Closure compilation in chrome: -# https://code.google.com/p/chromium/wiki/ClosureCompilation +# https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md { 'targets': [ { diff --git a/third_party/closure_compiler/externs/bluetooth.js b/third_party/closure_compiler/externs/bluetooth.js index ca5038b..e882535 100644 --- a/third_party/closure_compiler/externs/bluetooth.js +++ b/third_party/closure_compiler/externs/bluetooth.js @@ -7,7 +7,7 @@ // NOTE: The format of types has changed. 'FooType' is now // 'chrome.bluetooth.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md /** @fileoverview Externs generated from namespace: bluetooth */ diff --git a/third_party/closure_compiler/externs/bluetooth_private.js b/third_party/closure_compiler/externs/bluetooth_private.js index 8e04526..d4cdc98 100644 --- a/third_party/closure_compiler/externs/bluetooth_private.js +++ b/third_party/closure_compiler/externs/bluetooth_private.js @@ -7,7 +7,7 @@ // NOTE: The format of types has changed. 'FooType' is now // 'chrome.bluetoothPrivate.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md // IMPORTANT: // s/chrome.bluetoothPrivate.bluetooth.Device/chrome.bluetooth.Device/ diff --git a/third_party/closure_compiler/externs/developer_private.js b/third_party/closure_compiler/externs/developer_private.js index 9c6ded7..4ff417d 100644 --- a/third_party/closure_compiler/externs/developer_private.js +++ b/third_party/closure_compiler/externs/developer_private.js @@ -7,7 +7,7 @@ // NOTE: The format of types has changed. 'FooType' is now // 'chrome.developerPrivate.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md /** @fileoverview Externs generated from namespace: developerPrivate */ diff --git a/third_party/closure_compiler/externs/language_settings_private.js b/third_party/closure_compiler/externs/language_settings_private.js index 0b3d8e0..82375b2 100644 --- a/third_party/closure_compiler/externs/language_settings_private.js +++ b/third_party/closure_compiler/externs/language_settings_private.js @@ -7,7 +7,7 @@ // NOTE: The format of types has changed. 'FooType' is now // 'chrome.languageSettingsPrivate.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md /** @fileoverview Externs generated from namespace: languageSettingsPrivate */ diff --git a/third_party/closure_compiler/externs/management.js b/third_party/closure_compiler/externs/management.js index 9233173..4efa40f 100644 --- a/third_party/closure_compiler/externs/management.js +++ b/third_party/closure_compiler/externs/management.js @@ -7,7 +7,7 @@ // NOTE: The format of types has changed. 'FooType' is now // 'chrome.management.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md /** @fileoverview Externs generated from namespace: management */ diff --git a/third_party/closure_compiler/externs/networking_private.js b/third_party/closure_compiler/externs/networking_private.js index c3b0080..ee64645 100644 --- a/third_party/closure_compiler/externs/networking_private.js +++ b/third_party/closure_compiler/externs/networking_private.js @@ -7,7 +7,7 @@ // NOTE: The format of types has changed. 'FooType' is now // 'chrome.networkingPrivate.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md /** @fileoverview Externs generated from namespace: networkingPrivate */ diff --git a/third_party/closure_compiler/externs/settings_private.js b/third_party/closure_compiler/externs/settings_private.js index 228516f..ec9bd7e 100644 --- a/third_party/closure_compiler/externs/settings_private.js +++ b/third_party/closure_compiler/externs/settings_private.js @@ -7,7 +7,7 @@ // NOTE: The format of types has changed. 'FooType' is now // 'chrome.settingsPrivate.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md /** @fileoverview Externs generated from namespace: settingsPrivate */ diff --git a/third_party/google_input_tools/third_party/closure_library/closure/bin/build/closurebuilder.py b/third_party/google_input_tools/third_party/closure_library/closure/bin/build/closurebuilder.py index 1f01e61..1ea8120 100755 --- a/third_party/google_input_tools/third_party/closure_library/closure/bin/build/closurebuilder.py +++ b/third_party/google_input_tools/third_party/closure_library/closure/bin/build/closurebuilder.py @@ -246,7 +246,7 @@ is prefererred over using this script for performing JavaScript compilation. Please migrate your codebase. See: -https://code.google.com/p/closure-compiler/wiki/ManageClosureDependencies +https://github.com/google/closure-compiler/wiki/Manage-Closure-Dependencies """) # Make sure a .jar is specified. diff --git a/tools/android/eclipse/.classpath b/tools/android/eclipse/.classpath index fb1fd36..b740bfea 100644 --- a/tools/android/eclipse/.classpath +++ b/tools/android/eclipse/.classpath @@ -2,7 +2,7 @@ <!-- {% block header_message %} Eclipse classpath. See instructions at -https://code.google.com/p/chromium/wiki/AndroidEclipseDev for setting up Eclipse +https://www.chromium.org/developers/android-eclipse-dev for setting up Eclipse for Chrome Android development. Obsolete entries can be found using: diff --git a/tools/android/findbugs_plugin/findbugs.xml b/tools/android/findbugs_plugin/findbugs.xml index a1c4b5e..002e841 100644 --- a/tools/android/findbugs_plugin/findbugs.xml +++ b/tools/android/findbugs_plugin/findbugs.xml @@ -9,7 +9,7 @@ xsi:noNamespaceSchemaLocation="findbugsplugin.xsd" pluginid="SynchronizedThisDetector" provider="chromium" - website="http://code.google.com/p/chromium/wiki/UseFindBugsForAndroid"> + website="https://chromium.googlesource.com/chromium/src/+/master/docs/use_find_bugs_for_android.md"> <Detector class="org.chromium.tools.findbugs.plugin.SynchronizedThisDetector" reports="CHROMIUM_SYNCHRONIZED_THIS" /> <BugPattern type="CHROMIUM_SYNCHRONIZED_THIS" abbrev="CHROMIUM" category="CORRECTNESS"/> diff --git a/tools/clang/scripts/run_tool.py b/tools/clang/scripts/run_tool.py index 4d9a28a..c1267da 100755 --- a/tools/clang/scripts/run_tool.py +++ b/tools/clang/scripts/run_tool.py @@ -14,7 +14,7 @@ run_tool.py <tool> <path/to/compiledb> --all If you only want to run the tool across just chrome/browser and content/browser: run_tool.py <tool> <path/to/compiledb> chrome/browser content/browser -Please see https://code.google.com/p/chromium/wiki/ClangToolRefactoring for more +Please see https://chromium.googlesource.com/chromium/src/+/master/docs/clang_tool_refactoring.md for more information, which documents the entire automated refactoring flow in Chromium. Why use this tool: diff --git a/tools/clang/scripts/update.py b/tools/clang/scripts/update.py index ac9606c..322359f 100755 --- a/tools/clang/scripts/update.py +++ b/tools/clang/scripts/update.py @@ -24,7 +24,7 @@ import urllib2 import zipfile # Do NOT CHANGE this if you don't know what you're doing -- see -# https://code.google.com/p/chromium/wiki/UpdatingClang +# https://chromium.googlesource.com/chromium/src/+/master/docs/updating_clang.md # Reverting problematic clang rolls is safe, though. CLANG_REVISION = '259396' @@ -374,7 +374,7 @@ def UpdateClang(args): print 'Android NDK not found at ' + ANDROID_NDK_DIR print 'The Android NDK is needed to build a Clang whose -fsanitize=address' print 'works on Android. See ' - print 'http://code.google.com/p/chromium/wiki/AndroidBuildInstructions' + print 'https://www.chromium.org/developers/how-tos/android-build-instructions' print 'for how to install the NDK, or pass --without-android.' return 1 diff --git a/tools/clang/translation_unit/test_translation_unit.py b/tools/clang/translation_unit/test_translation_unit.py index 46576b0..0482a78 100755 --- a/tools/clang/translation_unit/test_translation_unit.py +++ b/tools/clang/translation_unit/test_translation_unit.py @@ -28,7 +28,7 @@ def _NumberOfTestsToString(tests): # Before running this test script, please build the translation_unit clang tool # first. This is explained here: -# https://code.google.com/p/chromium/wiki/ClangToolRefactoring +# https://chromium.googlesource.com/chromium/src/+/master/docs/clang_tool_refactoring.md def main(): tools_clang_directory = os.path.dirname(os.path.dirname( os.path.realpath(__file__))) diff --git a/tools/gn/misc/emacs/gn-mode.el b/tools/gn/misc/emacs/gn-mode.el index 3cb7341..6682290 100644 --- a/tools/gn/misc/emacs/gn-mode.el +++ b/tools/gn/misc/emacs/gn-mode.el @@ -14,7 +14,7 @@ ;; A major mode for editing GN files. GN stands for Generate Ninja. GN is the ;; meta build system used in Chromium. For more information on GN, see the GN -;; manual: <https://code.google.com/p/chromium/wiki/gn> +;; manual: <https://chromium.googlesource.com/chromium/src/+/master/tools/gn/README.md> ;;; To Do: diff --git a/tools/json_schema_compiler/js_externs_generator.py b/tools/json_schema_compiler/js_externs_generator.py index 8ba27ca..065e4d3 100644 --- a/tools/json_schema_compiler/js_externs_generator.py +++ b/tools/json_schema_compiler/js_externs_generator.py @@ -20,7 +20,7 @@ import re NOTE = """// NOTE: The format of types has changed. 'FooType' is now // 'chrome.%s.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md """ class JsExternsGenerator(object): diff --git a/tools/json_schema_compiler/js_externs_generator_test.py b/tools/json_schema_compiler/js_externs_generator_test.py index 6adc201..7447ea7 100755 --- a/tools/json_schema_compiler/js_externs_generator_test.py +++ b/tools/json_schema_compiler/js_externs_generator_test.py @@ -81,7 +81,7 @@ expected_output = ("""// Copyright %s The Chromium Authors. All rights reserved. // NOTE: The format of types has changed. 'FooType' is now // 'chrome.fakeApi.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md /** @fileoverview Externs generated from namespace: fakeApi */ @@ -240,7 +240,7 @@ json_expected = ("""// Copyright %s The Chromium Authors. All rights reserved. // NOTE: The format of types has changed. 'FooType' is now // 'chrome.fakeJson.FooType'. // Please run the closure compiler before committing changes. -// See https://code.google.com/p/chromium/wiki/ClosureCompilation. +// See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_compilation.md /** @fileoverview Externs generated from namespace: fakeJson */ diff --git a/ui/gfx/test/fontconfig_util_linux.cc b/ui/gfx/test/fontconfig_util_linux.cc index 3c62bd1..6f2da0b 100644 --- a/ui/gfx/test/fontconfig_util_linux.cc +++ b/ui/gfx/test/fontconfig_util_linux.cc @@ -85,7 +85,7 @@ bool LoadFontIntoFontconfig(const base::FilePath& path) { if (!base::PathExists(path)) { LOG(ERROR) << "You are missing " << path.value() << ". Try re-running " << "build/install-build-deps.sh. Also see " - << "http://code.google.com/p/chromium/wiki/LayoutTestsLinux"; + << "https://chromium.googlesource.com/chromium/src/+/master/docs/layout_tests_linux.md"; return false; } diff --git a/ui/strings/ui_strings.grd b/ui/strings/ui_strings.grd index 5e159dd..303be4d 100644 --- a/ui/strings/ui_strings.grd +++ b/ui/strings/ui_strings.grd @@ -9,7 +9,8 @@ need to be translated for each locale.--> <outputs> <!-- TODO add each of your output files. Modify the three below, and add your own for your various languages. See the user's guide - (http://wiki/Main/GritUsersGuide) for more details. + (https://www.chromium.org/developers/tools-we-use-in-chromium/grit/grit-users-guide) + for more details. Note that all output references are relative to the output directory which is specified at build time. --> <output filename="grit/ui_strings.h" type="rc_header"> |