Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Unified Diff: snapshot/minidump/module_snapshot_minidump.cc

Issue 1414243005: Update all URLs to point to https://crashpad.chromium.org/ (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: README.crashpad Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: snapshot/minidump/module_snapshot_minidump.cc
diff --git a/snapshot/minidump/module_snapshot_minidump.cc b/snapshot/minidump/module_snapshot_minidump.cc
index 6805d71c9398c8f8f1af4b9880b90fc265ac8b42..973d3b27073cc70a037fe0b7d296d0b2ea0e2070 100644
--- a/snapshot/minidump/module_snapshot_minidump.cc
+++ b/snapshot/minidump/module_snapshot_minidump.cc
@@ -58,25 +58,25 @@ bool ModuleSnapshotMinidump::Initialize(
std::string ModuleSnapshotMinidump::Name() const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
return std::string();
}
uint64_t ModuleSnapshotMinidump::Address() const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
return 0;
}
uint64_t ModuleSnapshotMinidump::Size() const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
return 0;
}
time_t ModuleSnapshotMinidump::Timestamp() const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
return 0;
}
@@ -85,7 +85,7 @@ void ModuleSnapshotMinidump::FileVersion(uint16_t* version_0,
uint16_t* version_2,
uint16_t* version_3) const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
*version_0 = 0;
*version_1 = 0;
*version_2 = 0;
@@ -97,7 +97,7 @@ void ModuleSnapshotMinidump::SourceVersion(uint16_t* version_0,
uint16_t* version_2,
uint16_t* version_3) const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
*version_0 = 0;
*version_1 = 0;
*version_2 = 0;
@@ -106,21 +106,21 @@ void ModuleSnapshotMinidump::SourceVersion(uint16_t* version_0,
ModuleSnapshot::ModuleType ModuleSnapshotMinidump::GetModuleType() const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
return kModuleTypeUnknown;
}
void ModuleSnapshotMinidump::UUIDAndAge(crashpad::UUID* uuid,
uint32_t* age) const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
*uuid = crashpad::UUID();
*age = 0;
}
std::string ModuleSnapshotMinidump::DebugFileName() const {
INITIALIZATION_STATE_DCHECK_VALID(initialized_);
- NOTREACHED(); // https://code.google.com/p/crashpad/issues/detail?id=10
+ NOTREACHED(); // https://crashpad.chromium.org/bug/10
return std::string();
}

Powered by Google App Engine
This is Rietveld 408576698