aboutsummaryrefslogtreecommitdiff
path: root/src/processor
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/processor
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/processor')
-rw-r--r--src/processor/minidump.cc8
-rw-r--r--src/processor/proto/README2
2 files changed, 5 insertions, 5 deletions
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: