aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOrgad Shaneh <orgads@gmail.com>2016-11-15 15:06:22 +0200
committerMike Frysinger <vapier@chromium.org>2016-11-18 17:24:37 +0000
commit11d7510c0889aeff1eadbda1a9c83d9b493f69fe (patch)
tree999539944983c027d1174131eb03a2453b513b15 /src
parentGitIgnore: Add dump_syms_mac (diff)
downloadbreakpad-11d7510c0889aeff1eadbda1a9c83d9b493f69fe.tar.xz
Update links
code.google.com is obsolete. Fix all broken markdown links while at it. Change-Id: I6a337bf4b84eacd5f5c749a4ee61331553279009 Reviewed-on: https://chromium-review.googlesource.com/411800 Reviewed-by: Mike Frysinger <vapier@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/client/mac/handler/exception_handler.cc4
-rw-r--r--src/common/linux/tests/crash_generator.cc2
-rw-r--r--src/common/mac/GTMDefines.h2
-rw-r--r--src/processor/minidump.cc8
-rw-r--r--src/processor/proto/README2
-rw-r--r--src/third_party/linux/include/gflags/gflags.h2
6 files changed, 10 insertions, 10 deletions
diff --git a/src/client/mac/handler/exception_handler.cc b/src/client/mac/handler/exception_handler.cc
index 0bdad474..2a19d46a 100644
--- a/src/client/mac/handler/exception_handler.cc
+++ b/src/client/mac/handler/exception_handler.cc
@@ -126,7 +126,7 @@ extern "C" {
mach_msg_header_t* reply);
// This symbol must be visible to dlsym() - see
- // http://code.google.com/p/google-breakpad/issues/detail?id=345 for details.
+ // https://bugs.chromium.org/p/google-breakpad/issues/detail?id=345 for details.
kern_return_t catch_exception_raise(mach_port_t target_port,
mach_port_t failed_thread,
mach_port_t task,
@@ -464,7 +464,7 @@ kern_return_t ForwardException(mach_port_t task, mach_port_t failed_thread,
kern_return_t result;
// TODO: Handle the case where |target_behavior| has MACH_EXCEPTION_CODES
- // set. https://code.google.com/p/google-breakpad/issues/detail?id=551
+ // set. https://bugs.chromium.org/p/google-breakpad/issues/detail?id=551
switch (target_behavior) {
case EXCEPTION_DEFAULT:
result = exception_raise(target_port, failed_thread, task, exception,
diff --git a/src/common/linux/tests/crash_generator.cc b/src/common/linux/tests/crash_generator.cc
index c9491f6f..dd681139 100644
--- a/src/common/linux/tests/crash_generator.cc
+++ b/src/common/linux/tests/crash_generator.cc
@@ -202,7 +202,7 @@ bool CrashGenerator::CreateChildCrash(
// On Android the signal sometimes doesn't seem to get sent even though
// tkill returns '0'. Retry a couple of times if the signal doesn't get
// through on the first go:
- // https://code.google.com/p/google-breakpad/issues/detail?id=579
+ // https://bugs.chromium.org/p/google-breakpad/issues/detail?id=579
#if defined(__ANDROID__)
const int kRetries = 60;
const unsigned int kSleepTimeInSeconds = 1;
diff --git a/src/common/mac/GTMDefines.h b/src/common/mac/GTMDefines.h
index 14ffa7e1..04fcf6d0 100644
--- a/src/common/mac/GTMDefines.h
+++ b/src/common/mac/GTMDefines.h
@@ -117,7 +117,7 @@
// developer level errors. This implementation simply macros to NSLog/NSAssert.
// It is not intended to be a general logging/reporting system.
//
-// Please see http://code.google.com/p/google-toolbox-for-mac/wiki/DevLogNAssert
+// Please see https://github.com/google/google-toolbox-for-mac/wiki/DevLogNAssert
// for a little more background on the usage of these macros.
//
// _GTMDevLog log some error/problem in debug builds
diff --git a/src/processor/minidump.cc b/src/processor/minidump.cc
index d7da7436..929913c0 100644
--- a/src/processor/minidump.cc
+++ b/src/processor/minidump.cc
@@ -74,7 +74,7 @@ using std::vector;
// Returns true iff |context_size| matches exactly one of the sizes of the
// various MDRawContext* types.
// TODO(blundell): This function can be removed once
-// http://code.google.com/p/google-breakpad/issues/detail?id=550 is fixed.
+// https://bugs.chromium.org/p/google-breakpad/issues/detail?id=550 is fixed.
static bool IsContextSizeUnique(uint32_t context_size) {
int num_matching_contexts = 0;
if (context_size == sizeof(MDRawContextX86))
@@ -473,7 +473,7 @@ bool MinidumpContext::Read(uint32_t expected_size) {
if (cpu_type != MD_CONTEXT_AMD64) {
// TODO: Fall through to switch below.
- // http://code.google.com/p/google-breakpad/issues/detail?id=550
+ // https://bugs.chromium.org/p/google-breakpad/issues/detail?id=550
BPLOG(ERROR) << "MinidumpContext not actually amd64 context";
return false;
}
@@ -575,7 +575,7 @@ bool MinidumpContext::Read(uint32_t expected_size) {
if (cpu_type != MD_CONTEXT_PPC64) {
// TODO: Fall through to switch below.
- // http://code.google.com/p/google-breakpad/issues/detail?id=550
+ // https://bugs.chromium.org/p/google-breakpad/issues/detail?id=550
BPLOG(ERROR) << "MinidumpContext not actually ppc64 context";
return false;
}
@@ -672,7 +672,7 @@ bool MinidumpContext::Read(uint32_t expected_size) {
if (cpu_type != MD_CONTEXT_ARM64) {
// TODO: Fall through to switch below.
- // http://code.google.com/p/google-breakpad/issues/detail?id=550
+ // https://bugs.chromium.org/p/google-breakpad/issues/detail?id=550
BPLOG(ERROR) << "MinidumpContext not actually arm64 context";
return false;
}
diff --git a/src/processor/proto/README b/src/processor/proto/README
index df37b6f3..f9e5a4d3 100644
--- a/src/processor/proto/README
+++ b/src/processor/proto/README
@@ -1,5 +1,5 @@
If you wish to use these protobufs, you must generate their source files
-using protoc from the protobuf project (http://code.google.com/p/protobuf/).
+using protoc from the protobuf project (https://github.com/google/protobuf).
-----
Troubleshooting for Protobuf:
diff --git a/src/third_party/linux/include/gflags/gflags.h b/src/third_party/linux/include/gflags/gflags.h
index 08a3b637..a1c99078 100644
--- a/src/third_party/linux/include/gflags/gflags.h
+++ b/src/third_party/linux/include/gflags/gflags.h
@@ -514,7 +514,7 @@ bool IsBoolFlag(bool from);
// great together!
// The weird 'using' + 'extern' inside the fLS namespace is to work around
// an unknown compiler bug/issue with the gcc 4.2.1 on SUSE 10. See
-// http://code.google.com/p/google-gflags/issues/detail?id=20
+// https://github.com/gflags/gflags/issues/31
#define DEFINE_string(name, val, txt) \
namespace fLS { \
static union { void* align; char s[sizeof(std::string)]; } s_##name[2]; \